我需要Pwa类的两个新对象_futurePwaOne和_futurePwaTwo。
内容尚未准备就绪,所以我认为它们需要成为期货,我在首页类中声明了它们。
Future<Pwa> _PwaOne;
Future<Pwa> _PwaTwo;
我有一个名为“ Future [Pwa]”的函数(带有箭头括号),称为getPwa函数,该函数返回:
Pwa.fromJson(await json.decode(response.body));
我这样称呼:
_pwaOne = getPwa(input);
...我认为还可以。 然后我要分配一个值
width =_pwaOne.loadingExperience.metrics.firstInputDelayMs.percentile.toDouble();
这会引发错误:
Error: The getter 'loadingExperience' isn't defined for the class 'Future<Pwa>'.
问题:如何使_futurePwaOne和_futurePwaTwo成为Pwa类?