【发布时间】:2022-11-30 05:26:32
【问题描述】:
我目前正在开发一个 flutter 应用程序。我已经在 Android 上测试了一个功能并且一切正常,当我在 IOS 上测试它时,不幸的是调用了以下错误:
_CastError (type 'Contract' is not a subtype of type 'Damage' in type cast)
错误所指的代码如下:
final Damage damage = item as Damage;
return Scaffold(
floatingActionButton: FloatingActionButton(
tooltip: 'Add',
onPressed: () {
Navigator.of(context).push(
MaterialPageRoute(
builder: (BuildContext context) => AddDocumentsPage(
damage: damage,
),
),
);
},
child: Icon(Icons.add),
),
body: DocumentsList(
attribute: 'date',
documentable: item,
),
);
【问题讨论】: