toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (booleanValue != null) 'booleanValue': booleanValue!,
      if (dateValue != null) 'dateValue': dateValue!,
      if (doubleValue != null) 'doubleValue': doubleValue!,
      if (integerValue != null) 'integerValue': integerValue!,
      if (stringValue != null) 'stringValue': stringValue!,
      if (timestampValue != null) 'timestampValue': timestampValue!,
    };