isEmptyWidget method
dynamic
isEmptyWidget(
- dynamic w
Implementation
isEmptyWidget(w) {
dynamic emptyW = getEmptyWidget();
if (emptyW.toString() == w.toString()) {
return true;
}
return false;
}