get method

  1. @override
Future<List<QueryRow>> get()
override

Executes this statement and returns the result.

Implementation

@override
Future<List<QueryRow>> get() {
  return _executeRaw(_mapArgs()).then(_mapDbResponse);
}