listFromJson static method

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

Creates a list of PersistentVolumeClaimVolumeSource from JSON data.

Implementation

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