setBackgroundColour method Null safety
- Color backgroundColour
Sets the background colour.
Implementation
Future<void> setBackgroundColour(Color backgroundColour) async {
  SharedPreferences sharedPreferences = await SharedPreferences.getInstance();
  sharedPreferences.setInt(backgroundColourKey, backgroundColour.value);
}