StoreMotherNameToLocalStorage method

Future<void> StoreMotherNameToLocalStorage(
  1. String value
)

MOTHER NAME

Implementation

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