CreatePublishingDestinationResponse.fromJson constructor

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

Implementation

factory CreatePublishingDestinationResponse.fromJson(
    Map<String, dynamic> json) {
  return CreatePublishingDestinationResponse(
    destinationId: json['destinationId'] as String,
  );
}