saveMap method

Future<Map<String, dynamic>> saveMap(
  1. String? table,
  2. Map<String, dynamic>? values
)

Save the specified record values to the specified data table Either parameters may be null

Implementation

Future<Map<String, dynamic>> saveMap(
    String? table, Map<String, dynamic>? values) {
  throw UnimplementedError();
}