toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dateFormat = this.dateFormat;
final displayText = this.displayText;
final locale = this.locale;
final timeFormat = this.timeFormat;
final timeZoneId = this.timeZoneId;
final timestamp = this.timestamp;
return {
'dateFormat': ?dateFormat,
'displayText': ?displayText,
'locale': ?locale,
'timeFormat': ?timeFormat,
'timeZoneId': ?timeZoneId,
'timestamp': ?timestamp,
};
}