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