我在 Flutter 中使用 hive 创建了一个动态数据库。如何获取某个索引中的值?我需要totalSec
在 index 中获取 的值。我要删除所以我可以减去它的总时间,但我不知道怎么做。
以下是我的代码片段示例:
child: new InkWell(
borderRadius: BorderRadius.circular(1000.0),
onTap: () {
newRoutineList.removeAt(index);
rtnConfigBox.deleteAt(index);
_rtnTotalSec = _rtnTotalSec - rtnConfigBox.getAt(index.totalSec); //Error: the getter 'totalSec' isn't defined for the class 'int'.
setState(() {});
},