scale method

BubbleBoxBorder scale(
  1. double t
)

放大倍率

Implementation

BubbleBoxBorder scale(double t) {
  return BubbleBoxBorder(
    color: color,
    style: style,
    width: width * t,
    dashedGap: (dashedGap ?? dashedWidth) * t,
    gradient: gradient?.scale(t),
    dashedWidth: dashedWidth * t,
  );
}