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