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