fix
This commit is contained in:
parent
8723cd53ee
commit
82d258f74a
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ class API {
|
|||
{"produced": produced?.map((x) => x.json()).toList()}));
|
||||
|
||||
if (produced != null) {
|
||||
return resp["produced"] as List<String>;
|
||||
return (resp["produced"] as List<dynamic>).cast<String>();
|
||||
}
|
||||
|
||||
return null;
|
||||
|
|
Loading…
Reference in a new issue