toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final booleanValue = this.booleanValue;
  final datetimeValue = this.datetimeValue;
  final enumValue = this.enumValue;
  final floatValue = this.floatValue;
  final intValue = this.intValue;
  final stringValue = this.stringValue;
  final timestampValue = this.timestampValue;
  return {
    'booleanValue': ?booleanValue,
    'datetimeValue': ?datetimeValue,
    'enumValue': ?enumValue,
    'floatValue': ?floatValue,
    'intValue': ?intValue,
    'stringValue': ?stringValue,
    'timestampValue': ?timestampValue,
  };
}