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