let method

void let(
  1. dynamic callBack(
    1. BuildContext val
    )
)

Implementation

void let(Function(BuildContext val) callBack) {
  var context = this;
  if (context != null) {
    callBack.call(context);
  }
}