listFromJson static method

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

Creates a list of HorizontalPodAutoscalerBehavior from JSON data.

Implementation

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