GetNotificationChannelResponse.fromJson constructor

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

Implementation

factory GetNotificationChannelResponse.fromJson(Map<String, dynamic> json) {
  return GetNotificationChannelResponse(
    snsRoleName: json['SnsRoleName'] as String?,
    snsTopicArn: json['SnsTopicArn'] as String?,
  );
}