S3Path.fromJson constructor

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

Implementation

factory S3Path.fromJson(Map<String, dynamic> json) {
  return S3Path(
    bucket: json['Bucket'] as String,
    key: json['Key'] as String,
  );
}