userSaveCard property

bool get userSaveCard

Implementation

bool get userSaveCard => _userSaveCard;
set userSaveCard (bool value)

Sets whether the user chose to save their card and notifies listeners of the change.

Implementation

set userSaveCard(bool value) {
  _userSaveCard = value;
  notifyListeners();
}