UpdateGeoMatchSetResponse.fromJson constructor

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

Implementation

factory UpdateGeoMatchSetResponse.fromJson(Map<String, dynamic> json) {
  return UpdateGeoMatchSetResponse(
    changeToken: json['ChangeToken'] as String?,
  );
}