ExportPublisherModelRequest.fromJson constructor
Implementation
factory ExportPublisherModelRequest.fromJson(Map<String, dynamic> json) {
return ExportPublisherModelRequest(
name: json['name'] ?? '',
destination: decode(json['destination'], GcsDestination.fromJson),
parent: json['parent'] ?? '',
);
}