findSimpleContainer method
Implementation
GuiSimpleContainer? findSimpleContainer(String id, {bool raise = true}) {
return _findGeneric<GuiSimpleContainer>(
id,
(s) => GuiSimpleContainer(s),
raise,
expectedSapType: GuiComponentType.guiSimpleContainer.value, // 71
);
}