getLeftStyleButtonBorder static method

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

Implementation

static BorderSide getLeftStyleButtonBorder(
  BuildContext context, {
  UpStyle? override,
  UpStyle? style,
  UpColorType? colorType,
}) {
  return BorderSide(
    style: style?.buttonBorderLeftStyle?.buttonBorderStyle ??
        getButtonBorderStyle(context, style: style, colorType: colorType),
    width: style?.buttonBorderLeftStyle?.buttonBorderWidth ??
        getButtonBorderWidth(context, style: style, colorType: colorType),
    color: style?.buttonBorderLeftStyle?.buttonBorderColor ??
        getButtonBorderColor(context, style: style, colorType: colorType),
  );
}