ApplicationSource.fromJson constructor
Implementation
factory ApplicationSource.fromJson(Map<String, dynamic> json) {
return ApplicationSource(
cloudFormationStackARN: json['CloudFormationStackARN'] as String?,
tagFilters: (json['TagFilters'] as List?)
?.whereNotNull()
.map((e) => TagFilter.fromJson(e as Map<String, dynamic>))
.toList(),
);
}