also method
T
also(
- void block(
- T it
Executes block with value as parameter and returns the original value Usage: user.also((it) => print(it.name))
Implementation
T also(void Function(T it) block) {
block(this);
return this;
}