getTable method

Future<List<Map<String, dynamic>>> getTable(
  1. String table, {
  2. bool? distinct,
  3. String? where,
  4. List<Object?>? whereArgs,
  5. String? groupBy,
  6. String? having,
  7. String? orderBy,
  8. int? limit,
  9. int? offset,
})

Return a List of records from a specified data table.

Implementation

Future<List<Map<String, dynamic>>> getTable(String table,
    {bool? distinct,
    String? where,
    List<Object?>? whereArgs,
    String? groupBy,
    String? having,
    String? orderBy,
    int? limit,
    int? offset}) {
  throw UnimplementedError();
}