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