clearInlineSlots method

void clearInlineSlots()

Clears every inline slot across every placement.

Implementation

void clearInlineSlots() {
  final removed = _slotPayloads.values.toList();
  _slotConfigs.clear();
  _slotPayloads.clear();
  _notifyInlineRemoved(removed);
  notifyListeners();
}