queryAllRows method

Future<List<Map<String, dynamic>>> queryAllRows()

queryAllRows fetches of the rows are returned as a list of maps, where each map is a key-value list of columns.

Implementation

Future<List<Map<String, dynamic>>> queryAllRows() async {
  final T db = await this.database;
  return db.query(kTable);
}