GetSuppressedDestinationResponse.fromJson constructor
Implementation
factory GetSuppressedDestinationResponse.fromJson(Map<String, dynamic> json) {
return GetSuppressedDestinationResponse(
suppressedDestination: SuppressedDestination.fromJson(
json['SuppressedDestination'] as Map<String, dynamic>),
);
}