getAll method

Future<List<CardModel>> getAll()

Get all cards

Implementation

Future<List<CardModel>> getAll() async {
  return _db.select(_db.cards).get();
}