named method
Sets the debug name of this reactive object and returns it.
Useful for chaining:
final count = 0.lx.named('count');
Implementation
R named(String name) {
this.name = name;
return this;
}
Sets the debug name of this reactive object and returns it.
Useful for chaining:
final count = 0.lx.named('count');
R named(String name) {
this.name = name;
return this;
}