Signal<T>.lazy constructor
Lazy signal that can be created with type T that the value will be assigned later.
final db = Signal.lazy<DatabaseConnection>();
...
db.value = DatabaseConnect(...);
Implementation
Signal.lazy({
this.debugLabel,
bool autoDispose = false,
}) : super.lazy() {
this.autoDispose = autoDispose;
}