toJson method

Map<String, dynamic> toJson()

Implementation

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