listFromJson static method

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

Creates a list of GlusterfsVolumeSource from JSON data.

Implementation

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