use method

void use(
  1. dynamic doStuff(
    1. T
    )
)

Implementation

void use(Function(T) doStuff) {
  if (this != null) doStuff(this);
}