considerNotify method

void considerNotify()

Implementation

void considerNotify() {
  if (_shouldNotify && value != null) {
    _shouldNotify = false;
    _observer?.call(value!);
  }
}