我需要从 SharedPreferences 中获取一个数字并将其存储在一个常量中。但我无法做到。
SharedPreferences sp = await SharedPreferences.getInstance();
const int index = sp.getInt('index')!;
此代码引发此错误:
Const variables must be initialized with a constant value.
Try changing the initializer to be a constant expression.
我想获得一次数据,并且永远不会再更改它。我怎样才能做到这一点?