toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dateTimeValue = this.dateTimeValue;
  final dateValue = this.dateValue;
  final decimalValue = this.decimalValue;
  final intValue = this.intValue;
  final moneyValue = this.moneyValue;
  final stringValue = this.stringValue;
  return {
    'dateTimeValue': ?dateTimeValue,
    'dateValue': ?dateValue,
    'decimalValue': ?decimalValue,
    'intValue': ?intValue,
    'moneyValue': ?moneyValue,
    'stringValue': ?stringValue,
  };
}