findSimpleContainer method

GuiSimpleContainer? findSimpleContainer(
  1. String id, {
  2. bool raise = true,
})

Implementation

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