AIOrbButton constructor

const AIOrbButton({
  1. Key? key,
  2. required OrbState state,
  3. required bool hasGeneratedResult,
  4. double size = 160,
  5. VoidCallback? onTap,
})

Implementation

const AIOrbButton({
  super.key,
  required this.state,
  required this.hasGeneratedResult,
  this.size = 160,
  this.onTap,
});