IDSActionBar constructor

IDSActionBar({
  1. required Widget activeIcon,
  2. Widget? inActiveIcon,
  3. String? text,
  4. 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,
});