isEmptyWidget method

dynamic isEmptyWidget(
  1. dynamic w
)

Implementation

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