BaseTabs constructor
const
BaseTabs({
- Key? key,
- required List<
BaseTabModel> tabs, - double tabHeight = 64.0,
- double tabOffset = 128 + 56.0,
- Map<
ECoreTabsPermissions, bool> permissions = const {ECoreTabsPermissions.canAdd : false, ECoreTabsPermissions.canRemove : false}, - void onAddTab()?,
- void onRemoveTab()?,
Implementation
const BaseTabs({
super.key,
required this.tabs,
this.tabHeight = 64.0,
this.tabOffset = 128 + 56.0,
this.permissions = const {
ECoreTabsPermissions.canAdd: false,
ECoreTabsPermissions.canRemove: false,
},
this.onAddTab,
this.onRemoveTab,
});