getById abstract method

Future<Map<String, dynamic>> getById(
  1. String table,
  2. String primaryColumn,
  3. Id id
)

Return data that is referenced by the given Id in the table.

Implementation

Future<Map<String, dynamic>> getById(
  String table,
  String primaryColumn,
  Id id,
);