GetNotificationConfigurationResponse.fromJson constructor
Implementation
factory GetNotificationConfigurationResponse.fromJson(
Map<String, dynamic> json) {
return GetNotificationConfigurationResponse(
notificationConfiguration: NotificationConfiguration.fromJson(
json['notificationConfiguration'] as Map<String, dynamic>),
);
}