saveRec method

Future<Map<String, dynamic>> saveRec(
  1. String table,
  2. Map<String, dynamic> fldValues
)

Save the specified record values to the specified data table Neither parameters can be null

Implementation

Future<Map<String, dynamic>> saveRec(
    String table, Map<String, dynamic> fldValues) {
  throw UnimplementedError();
}