AssetSourceEntry.fromJson constructor

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

Implementation

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