setTabOrder static method

void setTabOrder(
  1. List<SIQTab> tabs
)

Sets the order for the bottom navigation tabs inside the SDK

Implementation

static void setTabOrder(List<SIQTab> tabs) {
  _channel.invokeMethod(
      'setTabOrder', tabs.map((tab) => tab.toString()).toList());
}