findVHViewSwitch method

GuiVHViewSwitch? findVHViewSwitch(
  1. String id, {
  2. bool raise = true,
})

Implementation

GuiVHViewSwitch? findVHViewSwitch(String id, {bool raise = true}) {
  return _findGeneric<GuiVHViewSwitch>(
    id,
    (s) => GuiVHViewSwitch(s),
    raise,
    expectedSapType: GuiComponentType.guiVHViewSwitch.value, // 129
  );
}