exec method

Future<List<List>> exec()

Implementation

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