ExportDestination.fromJson constructor

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

Implementation

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