clear method

void clear([
  1. FilamentWidgetSlot? slot
])

Implementation

void clear([FilamentWidgetSlot? slot]) {
  if (slot == null) {
    _builders.clear();
  } else {
    _builders.remove(slot);
  }
}