clearAllInlineContent method
void
clearAllInlineContent()
Clears all inline content (carousels/stories) across every placement.
Implementation
void clearAllInlineContent() {
if (!_initialized) {
debugPrint('[Digia] clearAllInlineContent() called before initialize().');
return;
}
_controller.clearInlineSlots();
}