toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dateFormatSuggested = this.dateFormatSuggested;
final localeSuggested = this.localeSuggested;
final timeFormatSuggested = this.timeFormatSuggested;
final timeZoneIdSuggested = this.timeZoneIdSuggested;
final timestampSuggested = this.timestampSuggested;
return {
'dateFormatSuggested': ?dateFormatSuggested,
'localeSuggested': ?localeSuggested,
'timeFormatSuggested': ?timeFormatSuggested,
'timeZoneIdSuggested': ?timeZoneIdSuggested,
'timestampSuggested': ?timestampSuggested,
};
}