toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final booleanValue = this.booleanValue;
  final dateValue = this.dateValue;
  final doubleValue = this.doubleValue;
  final integerValue = this.integerValue;
  final stringValue = this.stringValue;
  final timestampValue = this.timestampValue;
  return {
    'booleanValue': ?booleanValue,
    'dateValue': ?dateValue,
    'doubleValue': ?doubleValue,
    'integerValue': ?integerValue,
    'stringValue': ?stringValue,
    'timestampValue': ?timestampValue,
  };
}