getRightStyleButtonBorderOnHover static method

BorderSide getRightStyleButtonBorderOnHover(
  1. BuildContext context, {
  2. UpStyle? override,
  3. UpStyle? style,
  4. UpColorType? colorType,
})

Implementation

static BorderSide getRightStyleButtonBorderOnHover(
  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?.buttonHoverBorderColor ??
        getButtonHoverBorderColor(context,
            style: style, colorType: colorType),
  );
}