use method
void
use(
- dynamic doStuff(
- T
Implementation
void use(Function(T) doStuff) {
if (this != null) doStuff(this);
}
void use(Function(T) doStuff) {
if (this != null) doStuff(this);
}