getBackgroundColour method Null safety

Future<int> getBackgroundColour()

Retreives the background colour from shared preferences.

Implementation

Future<int> getBackgroundColour() async {
  SharedPreferences sharedPreferences = await SharedPreferences.getInstance();
  return sharedPreferences.getInt(backgroundColourKey) ?? defaultBackgroundColour.value;
}