get method

Future<List<List?>?> get()

Implementation

Future<List<List?>?> get() async {
  if (_execFunc == null) {
    throw Exception('QueryBuilder@get execFunc not defined');
  }
  return _execFunc!();
}