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