OutputResources.fromJson constructor
Implementation
factory OutputResources.fromJson(Map<String, dynamic> json) {
return OutputResources(
amis: (json['amis'] as List?)
?.whereNotNull()
.map((e) => Ami.fromJson(e as Map<String, dynamic>))
.toList(),
containers: (json['containers'] as List?)
?.whereNotNull()
.map((e) => Container.fromJson(e as Map<String, dynamic>))
.toList(),
);
}