getFatherNameFromLocalStorage method

Future<String?> getFatherNameFromLocalStorage()

Implementation

Future<String?> getFatherNameFromLocalStorage() async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  String? value = prefs.getString(fatherNameKey);
  return value;
}