GetNotificationConfigurationResponse.fromJson constructor

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

Implementation

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