ExportDestination.fromJson constructor
Implementation
factory ExportDestination.fromJson(Map<String, dynamic> json) {
return ExportDestination(
s3: json['s3'] != null
? S3Destination.fromJson(json['s3'] as Map<String, dynamic>)
: null,
);
}