toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final booleanArray = this.booleanArray;
  final booleanValue = this.booleanValue;
  final doubleArray = this.doubleArray;
  final doubleValue = this.doubleValue;
  final intArray = this.intArray;
  final intValue = this.intValue;
  final jsonValue = this.jsonValue;
  final stringArray = this.stringArray;
  final stringValue = this.stringValue;
  return {
    'booleanArray': ?booleanArray,
    'booleanValue': ?booleanValue,
    'doubleArray': ?doubleArray,
    'doubleValue': ?doubleValue,
    'intArray': ?intArray,
    'intValue': ?intValue,
    'jsonValue': ?jsonValue,
    'stringArray': ?stringArray,
    'stringValue': ?stringValue,
  };
}