first method

Future<Map<String, Object?>?> first()
inherited

Implementation

Future<Map<String, Object?>?> first() async {
  var values = await get();
  if (values.isEmpty) {
    return null;
  }
  return values.first;
}