toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final baseVersion = this.baseVersion;
  final conflictResolutionStrategy = this.conflictResolutionStrategy;
  final delete = this.delete;
  final insert = this.insert;
  final propertyMask = this.propertyMask;
  final propertyTransforms = this.propertyTransforms;
  final update = this.update;
  final updateTime = this.updateTime;
  final upsert = this.upsert;
  return {
    'baseVersion': ?baseVersion,
    'conflictResolutionStrategy': ?conflictResolutionStrategy,
    'delete': ?delete,
    'insert': ?insert,
    'propertyMask': ?propertyMask,
    'propertyTransforms': ?propertyTransforms,
    'update': ?update,
    'updateTime': ?updateTime,
    'upsert': ?upsert,
  };
}