RegionBar constructor
RegionBar({})
Implementation
RegionBar(
{required this.onChanged,
required this.menuTexts,
this.bgColor,
this.controller,
this.labelColor,
this.labelStyle,
this.unselectedLabelColor,
this.selectedColor}) {
bgColor ??= Get.find<AppColors>().btnColor;
selectedColor ??= Get.find<AppColors>().backgroundColor;
labelColor ??= Get.find<AppColors>().textColor;
unselectedLabelColor ??= Get.find<AppColors>().hintColor;
labelStyle ??= Get.find<AppFonts>().S(isBold: true);
}