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