SuppressionAttributes.fromJson constructor
Implementation
factory SuppressionAttributes.fromJson(Map<String, dynamic> json) {
return SuppressionAttributes(
suppressedReasons: (json['SuppressedReasons'] as List?)
?.whereNotNull()
.map((e) => (e as String).toSuppressionListReason())
.toList(),
);
}