QueryException<T> constructor Null safety

QueryException<T>(
  1. QueryExceptionEvent event,
  2. {String? message,
  3. T? underlyingException,
  4. List<String>? offendingItems}
)

Implementation

QueryException(
  this.event, {
  this.message,
  this.underlyingException,
  this.offendingItems,
});