OutputLocation.fromJson constructor

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

Implementation

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