IndicatorShape.roundRectangleShape constructor

IndicatorShape.roundRectangleShape({
  1. Size size = const Size(12.0, 12.0),
  2. Size cornerSize = const Size.square(3),
})

Implementation

factory IndicatorShape.roundRectangleShape({
  Size size = const Size(12.0, 12.0),
  Size cornerSize = const Size.square(3),
}) {
  return RoundRectangleShape(
    cornerSize: cornerSize,
    size: size,
  );
}