getAll method

Future<List<UserModel>> getAll()

Get all users

Implementation

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