fromJsonList static method

List<ComponentParameterField> fromJsonList(
  1. List json
)

Implementation

static List<ComponentParameterField> fromJsonList(List<dynamic> json) {
  return json.map((e) => fromJson(e)).toList();
}