List<T> fromJsonList(List<dynamic> jsonList) => jsonList.map((e) => fromJson(e as Map<String, dynamic>)).toList();