getRightStyleButtonBorder static method
BorderSide
getRightStyleButtonBorder(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static BorderSide getRightStyleButtonBorder(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return BorderSide(
style: style?.buttonBorderRightStyle?.buttonBorderStyle ??
getButtonBorderStyle(context, style: style, colorType: colorType),
width: style?.buttonBorderRightStyle?.buttonBorderWidth ??
getButtonBorderWidth(context, style: style, colorType: colorType),
color: style?.buttonBorderRightStyle?.buttonBorderColor ??
getButtonBorderColor(context, style: style, colorType: colorType),
);
}