enable method

void enable()

Habilita el paywall y notifica a los oyentes.

Implementation

void enable() {
  if (!_enabled) {
    _enabled = true;
    notifyListeners();
  }
}