listFromJson static method
Creates a list of CSIStorageCapacity from JSON data.
Implementation
static List<CSIStorageCapacity> listFromJson(
Iterable<Map<String, dynamic>> list) {
return list.map((e) => CSIStorageCapacity.fromJson(e)).toList();
}