operator / method

Null operator /(
  1. dynamic f(
    1. String
    )
)

Places the left-side Null x into right-side Function f as single argument. Returns the source x.

Implementation

Null operator / (Function(String) f) {
  f(this!);
  return this;
}