query method

Future<List<Map<String, dynamic>>> query()
inherited

Retrieve the to-do items from the database

Implementation

Future<List<Map<String, dynamic>>> query() async {
  _items = await retrieve();
  fillRecords(_items);
  return _items;
}