fire static method

void fire(
  1. QueryResult<Object?> result, [
  2. Exception handleException(
    1. Map<String, dynamic>
    )?
])

parses exceptions of the given result and throws if any.

Implementation

static void fire(
  QueryResult result, [
  Exception Function(Map<String, dynamic>)? handleException,
]) {
  Object? exception = parse(result, handleException);
  if (exception != null) throw exception;
}