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