AnimatedGetStartedButton constructor

const AnimatedGetStartedButton({
  1. Key? key,
  2. required String text,
  3. required VoidCallback onTap,
  4. double? width,
  5. double? height,
  6. IconData? icon = Icons.rocket_launch,
  7. bool isLoading = false,
})

Implementation

const AnimatedGetStartedButton({
  super.key,
  required this.text,
  required this.onTap,
  this.width,
  this.height,
  this.icon = Icons.rocket_launch,
  this.isLoading = false,
});