toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dateFormat = this.dateFormat;
  final dateFormatType = this.dateFormatType;
  final maxValue = this.maxValue;
  final minValue = this.minValue;
  return {
    'dateFormat': ?dateFormat,
    'dateFormatType': ?dateFormatType,
    'maxValue': ?maxValue,
    'minValue': ?minValue,
  };
}