getRow method

Future<List<Map<String, dynamic>>> getRow(
  1. String table,
  2. int id,
  3. Map<String, dynamic> fields
)

Return the specified fields from a specified record by primary key from a specified data table

Implementation

Future<List<Map<String, dynamic>>> getRow(
    String table, int id, Map<String, dynamic> fields) {
  throw UnimplementedError();
}