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