toJson method

Map<String, dynamic> toJson()

Implementation

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