save method

Future<Map?> save(
  1. Map entity, {
  2. bool isUpsert = false,
})
override

Implementation

Future<Map?> save(Map entity, {bool isUpsert = false}) =>
    _channel.invokeMethod("Backendless.Data.of.save", <String, dynamic>{
      'tableName': _tableName,
      'entity': entity,
      'isUpsert': isUpsert
    });