first method

Future<List?> first()

Implementation

Future<List?> first() async {
  if (_firstFunc == null) {
    throw Exception('QueryBuilder@first firstFunc not defined');
  }
  return _firstFunc!();
}