withLifecycle method
RestorableTextEditingController
withLifecycle(
- RaiiLifecycleAware lifecycleAware, {
- String? debugLabel,
Attaches this restorable text editing controller to a RaiiLifecycleAware object.
Implementation
RestorableTextEditingController withLifecycle(
RaiiLifecycleAware lifecycleAware, {
String? debugLabel,
}) {
RaiiDisposeable.withLifecycle(
lifecycleAware,
dispose: dispose,
debugLabel: debugLabel,
);
return this;
}