ManifestFileLocation.fromJson constructor

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

Implementation

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