S3Location.fromJson constructor
Implementation
factory S3Location.fromJson(Map<String, dynamic> json) {
return S3Location(
bucket: json['bucket'] as String?,
bundleType: (json['bundleType'] as String?)?.toBundleType(),
eTag: json['eTag'] as String?,
key: json['key'] as String?,
version: json['version'] as String?,
);
}