listFromJson static method

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

Creates a list of HPAScalingRules from JSON data.

Implementation

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