ActiveIndicator constructor

const ActiveIndicator(
  1. {@required double centerX,
  2. @required double centerY,
  3. @required Color color,
  4. @required double cornerRadius,
  5. @required double height,
  6. @required double width,
  7. @required int numSides,
  8. double rotation = 0,
  9. Key key}
)

Implementation

const ActiveIndicator({
  @required this.centerX,
  @required this.centerY,
  @required this.color,
  @required this.cornerRadius,
  @required this.height,
  @required this.width,
  @required this.numSides,
  this.rotation = 0,
  Key key,
}) : super(key: key);