whereKeyStartsWithOrFail method
Implementation
@override
FutureOr<Map<String, dynamic>> whereKeyStartsWithOrFail(
String prefix, {
Exception Function()? onFail,
}) =>
whereKeyStartsWith(prefix) as Map<String, dynamic>? ??
(throw (onFail?.call() ?? Exception('Prefix $prefix not found')));