getBackgroundColour method Null safety
Retreives the background colour from shared preferences.
Implementation
Future<int> getBackgroundColour() async {
SharedPreferences sharedPreferences = await SharedPreferences.getInstance();
return sharedPreferences.getInt(backgroundColourKey) ?? defaultBackgroundColour.value;
}