relight method

void relight()

Re-ignites the flame. No-op if already lit.

Implementation

void relight() {
  if (_lit) return;
  _lit = true;
  notifyListeners();
}