CircularTextBit constructor

const CircularTextBit({
  1. Key? key,
  2. required String text,
  3. double radius = 100,
  4. TextStyle? textStyle,
  5. bool clockwise = true,
  6. double spinDuration = 10.0,
  7. HoverEffect onHover = HoverEffect.undefined,
})

Implementation

const CircularTextBit({
  super.key,
  required this.text,
  this.radius = 100,
  this.textStyle,
  this.clockwise = true,
  this.spinDuration = 10.0,
  this.onHover = HoverEffect.undefined,
});