toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customMessage = this.customMessage;
final notifications = this.notifications;
final suspensionExpiration = this.suspensionExpiration;
final whoMayResolve = this.whoMayResolve;
return {
'customMessage': ?customMessage,
'notifications': ?notifications,
'suspensionExpiration': ?suspensionExpiration,
'whoMayResolve': ?whoMayResolve,
};
}