toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final creationWindow = this.creationWindow;
final text = this.text;
final timeZone = this.timeZone;
return {
'creationWindow': ?creationWindow,
'text': ?text,
'timeZone': ?timeZone,
};
}