PatchFilter.fromJson constructor
Implementation
factory PatchFilter.fromJson(Map<String, dynamic> json) {
return PatchFilter(
key: (json['Key'] as String).toPatchFilterKey(),
values: (json['Values'] as List)
.whereNotNull()
.map((e) => e as String)
.toList(),
);
}