getAll method

Future<List<EmployeeData>> getAll()

Implementation

Future<List<EmployeeData>> getAll() async {
  return await (db.select(db.employee)).get();
}