getAllData static method

dynamic getAllData()

Implementation

static getAllData() async {
  DBMerge db = await connect();
  List<Map> list = await db.table('data').get();
  return list;
}