toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final appendMissingElements = this.appendMissingElements;
  final increment = this.increment;
  final maximum = this.maximum;
  final minimum = this.minimum;
  final property = this.property;
  final removeAllFromArray = this.removeAllFromArray;
  final setToServerValue = this.setToServerValue;
  return {
    'appendMissingElements': ?appendMissingElements,
    'increment': ?increment,
    'maximum': ?maximum,
    'minimum': ?minimum,
    'property': ?property,
    'removeAllFromArray': ?removeAllFromArray,
    'setToServerValue': ?setToServerValue,
  };
}