go method

void go(
  1. dynamic fun(
    1. T it
    )
)

Implementation

void go(Function(T it) fun) => fun(this);