fromJsonList static method

List<Parameter> fromJsonList(
  1. List jsonList,
  2. ActionMapper actionMapper
)

Implementation

static List<Parameter> fromJsonList(
    List<dynamic> jsonList, ActionMapper actionMapper) {
  return jsonList
      .map((e) => Parameter.fromJson(
            e as Map<String, dynamic>,
            actionMapper,
          ))
      .toList();
}