Enable / Disable Remembering last number sent input
by default, Every number the user will enter will be saved for the next use until the user will change it.
You can change the behavior so it will clear the input field every time the app is open with the following.
- 1- Open the
config.dartfile. - 2- Search for this:
/config/config.dart
static const bool shouldRememberLastNumberSent = true;
- 3- Change
truetofalse:
/config/config.dart
static const bool shouldRememberLastNumberSent = false;