scale method

IndicatorShape scale(
  1. double scale
)

Implementation

IndicatorShape scale(double scale) {
  return copyWith(
    width: width * scale,
    height: height * scale,
  );
}