S3KeyOutput.fromJson constructor

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

Implementation

factory S3KeyOutput.fromJson(Map<String, dynamic> json) {
  return S3KeyOutput(
    etag: json['etag'] as String?,
    s3Key: json['s3Key'] as String?,
  );
}