notify method

  1. @override
void notify()
override

Notify to observers are listen on this observable

Implementation

@override
void notify() {
  if (rateLimit == null) {
    super.notify();
  } else {
    _timer?.cancel();
    _timer = Timer(Duration(milliseconds: rateLimit!), super.notify);
  }
}