GeoMatchSet.fromJson constructor
Implementation
factory GeoMatchSet.fromJson(Map<String, dynamic> json) {
return GeoMatchSet(
geoMatchConstraints: (json['GeoMatchConstraints'] as List)
.whereNotNull()
.map((e) => GeoMatchConstraint.fromJson(e as Map<String, dynamic>))
.toList(),
geoMatchSetId: json['GeoMatchSetId'] as String,
name: json['Name'] as String?,
);
}