GeoMatchConstraint.fromJson constructor
Implementation
factory GeoMatchConstraint.fromJson(Map<String, dynamic> json) {
return GeoMatchConstraint(
type: (json['Type'] as String).toGeoMatchConstraintType(),
value: (json['Value'] as String).toGeoMatchConstraintValue(),
);
}