getTextSize method

Future<double> getTextSize()

Implementation

Future<double> getTextSize() async {
  double textSize = sharedPref.getDouble("TextSize") ?? 18;
  return textSize;
}