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