fromJsonList static method

List<WorkflowEntity> fromJsonList(
  1. List json,
  2. ActionMapper actionMapper
)

Implementation

static List<WorkflowEntity> fromJsonList(
    List<dynamic> json, ActionMapper actionMapper) {
  return json.map((e) => WorkflowEntity.fromJson(e, actionMapper)).toList();
}