listFromJson static method

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

Creates a list of ScaleIOPersistentVolumeSource from JSON data.

Implementation

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