withLifecycle method
Attaches this search controller to a RaiiLifecycleAware object for automatic disposal.
Implementation
SearchController withLifecycle(
  RaiiLifecycleAware lifecycleAware, {
  String? debugLabel,
}) {
  RaiiDisposeable.withLifecycle(
    lifecycleAware,
    dispose: dispose,
    debugLabel: debugLabel,
  );
  return this;
}