named method

R named(
  1. String name
)

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;
}