fromJsonList static method

List<TemplateManagerItem> fromJsonList(
  1. List items
)

Implementation

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