AugmentedManifestsListItem.fromJson constructor
Implementation
factory AugmentedManifestsListItem.fromJson(Map<String, dynamic> json) {
return AugmentedManifestsListItem(
attributeNames: (json['AttributeNames'] as List)
.whereNotNull()
.map((e) => e as String)
.toList(),
s3Uri: json['S3Uri'] as String,
);
}