IDSActionBar constructor
IDSActionBar({
- required Widget activeIcon,
- Widget? inActiveIcon,
- String? text,
- ValueChanged<
bool> ? onTab,
Creates an IDSActionBar with specified parameters.
The activeIcon
is required, while the inActiveIcon
, text
, and
onTab
are optional.
Implementation
IDSActionBar({
required this.activeIcon,
this.inActiveIcon,
this.text,
this.onTab,
});