首先需要在pubspec.yaml文件中添加依賴。
SharedPreferences record = await SharedPreferences.getInstance();
//字串資料
await record.setString(key, value);
//布林資料
await record.setBool(key, value);
//浮點數資料
await record.setDouble(key, value);
//整數資料
await record.setInt(key, value);
//字串列表資料
await record.setStringList(key, value);
//字串資料
record.getString(key);
//布林資料
record.getBool(key);
//浮點數資料
record.getDouble(key);
//整數資料
record.getInt(key);
//字串列表資料
record.getStringList(key);
record.remove(key);
record.clear();