RoboticRevolvingButton constructor

const RoboticRevolvingButton({
  1. Key? key,
  2. required String text,
  3. required VoidCallback onTap,
  4. double? width,
  5. Color? lineColor,
  6. Color? textColor,
  7. Color? backgroundColor,
})

Implementation

const RoboticRevolvingButton({
  super.key,
  required this.text,
  required this.onTap,
  this.width,
  this.lineColor,
  this.textColor,
  this.backgroundColor,
});