getEffectiveButtonTextStyle method
Gets the effective text style for buttons
Implementation
TextStyle getEffectiveButtonTextStyle() {
return buttonTextStyle ??
TextStyle(
color: buttonTextColor ?? Colors.white,
fontSize: 18,
fontWeight: FontWeight.w600,
);
}