getRecord method

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

Return a specific record by primary key from a specified data table

Implementation

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