CourierTabContent constructor

const CourierTabContent({
  1. Key? key,
  2. required String text,
  3. required TextStyle? textStyle,
  4. required CourierInboxTheme theme,
  5. required bool isActive,
  6. bool canShowUnreadCount = false,
})

Implementation

const CourierTabContent({
  super.key,
  required this.text,
  required this.textStyle,
  required this.theme,
  required this.isActive,
  this.canShowUnreadCount = false,
});