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