newRec method

Map<String?, dynamic> newRec(
  1. String table, [
  2. Map<String, dynamic>? data
])

Create a new 'empty' record from a specified data table Specified the fields to come from the data table

Implementation

Map<String?, dynamic> newRec(String table, [Map<String, dynamic>? data]) {
  throw UnimplementedError();
}