Флаттер
Я получаю List<dynamic>
из json.decode(res.body)
и не могу конвертировать в ожидаемый тип List<Item>
в chrome инструменте разработки он выдаст
Uncaught (in promise) Error: Type 'List<dynamic>' should be 'List<Item>' to implement expected type 'FutureOr<List<Item>>'.
вот мой код
import 'package:http/http.dart' as http;
class ApiService {
static Future get({String url, Object params}) async {
final res = await http.get(_root + url);
return json.decode(res.body);
}
/// get 30 items of specific content type
static Future<List<Item>> getContentList({String type, num page = 1}) async {
final List<dynamic> ret = await ApiService.get(
url: _typeMap[type],
);
// If I try `ret.cast<Item>()` it will also throw something like `... type _JsonMap ...`
return ret;
}
}
тело ответа - это список новостей хакера,
[{comments_count: 466,
domain: "github.com",
id: 22925087,
points: 1162,
time: 1587398440,
time_ago: "8 hours ago",
title: "Shirt Without Stripes",
type: "link",
url: "https://github.com/elsamuko/Shirt-without-Stripes",
user: "elsamuko",
}]
как я могу это исправить?