getTextSizeFullScreen method

Future<double> getTextSizeFullScreen()

Implementation

Future<double> getTextSizeFullScreen() async {
  sharedPref = await _sharedPreferences;
  double textSizeFullScreen =
      sharedPref?.getDouble("TextSizeFullScreen") ?? 50;
  return textSizeFullScreen;
}