initWithRef method

  1. @protected
void initWithRef(
  1. Ref<Object?> ref
)
inherited

Implementation

@protected
void initWithRef(Ref ref) {
  if (_initialized) return;
  _initialized = true;
  _ref = ref;
  _ref.onDispose(() => _debounceTimer?.cancel());
}