ListResourceInventoryResponse.fromJson constructor
Implementation
factory ListResourceInventoryResponse.fromJson(Map<String, dynamic> json) {
return ListResourceInventoryResponse(
nextToken: json['NextToken'] as String?,
resourceInventoryList: (json['ResourceInventoryList'] as List?)
?.whereNotNull()
.map((e) => ResourceInventory.fromJson(e as Map<String, dynamic>))
.toList(),
);
}