DeleteNotificationRuleResult.fromJson constructor

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

Implementation

factory DeleteNotificationRuleResult.fromJson(Map<String, dynamic> json) {
  return DeleteNotificationRuleResult(
    arn: json['Arn'] as String?,
  );
}