toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final booleanValue = this.booleanValue;
  final doubleValue = this.doubleValue;
  final integerValue = this.integerValue;
  final stringValue = this.stringValue;
  return {
    if (booleanValue != null) 'booleanValue': booleanValue,
    if (doubleValue != null) 'doubleValue': doubleValue,
    if (integerValue != null) 'integerValue': integerValue,
    if (stringValue != null) 'stringValue': stringValue,
  };
}