listFromJson static method

List<StorageOSPersistentVolumeSource> listFromJson(
  1. Iterable<Map<String, dynamic>> list
)

Creates a list of StorageOSPersistentVolumeSource from JSON data.

Implementation

static List<StorageOSPersistentVolumeSource> listFromJson(
    Iterable<Map<String, dynamic>> list) {
  return list
      .map((e) => StorageOSPersistentVolumeSource.fromJson(e))
      .toList();
}