disable method

void disable()

Deshabilita el paywall y notifica a los oyentes.

Implementation

void disable() {
  if (_enabled) {
    _enabled = false;
    notifyListeners();
  }
}