first method
---------- FIRST ----------
Implementation
Future<T?> first() async {
limit(1);
final list = await get();
return list.isEmpty ? null : list.first;
}
---------- FIRST ----------
Future<T?> first() async {
limit(1);
final list = await get();
return list.isEmpty ? null : list.first;
}