fire static method
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;
}