toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final arn = this.arn;
  final excludedRules = this.excludedRules;
  return {
    'ARN': arn,
    if (excludedRules != null) 'ExcludedRules': excludedRules,
  };
}