AddNotificationChannelsResponse.fromJson constructor

AddNotificationChannelsResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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