lives property

int get lives

Implementation

int get lives => _lives;
set lives (int value)

Implementation

set lives(int value) {
  if (value <= 5 && value >= 0) {
    _lives = value;
    notifyListeners();
  }
}