GetGeoMatchSetResponse.fromJson constructor

GetGeoMatchSetResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory GetGeoMatchSetResponse.fromJson(Map<String, dynamic> json) {
  return GetGeoMatchSetResponse(
    geoMatchSet: json['GeoMatchSet'] != null
        ? GeoMatchSet.fromJson(json['GeoMatchSet'] as Map<String, dynamic>)
        : null,
  );
}