StoreFatherNameToLocalStorage method

Future<void> StoreFatherNameToLocalStorage(
  1. String value
)

FATHER NAME

Implementation

Future<void> StoreFatherNameToLocalStorage(String value) async {
  SharedPreferences prefs = await SharedPreferences.getInstance();
  prefs.setString(fatherNameKey,value);
}