whereKeyStartsWithOrFail method
Implementation
@override
Future<Map<String, dynamic>> whereKeyStartsWithOrFail(String prefix,
{Exception Function()? onFail}) async {
final entries = await whereKeyStartsWith(prefix);
return entries.isEmpty
? onFail != null
? throw onFail()
: throw Exception('No entries found')
: entries;
}