AtOnboardingButton constructor

const AtOnboardingButton({
  1. Key? key,
  2. required Color? backgroundColor,
  3. required Color? borderColor,
  4. required double? height,
  5. required double? width,
  6. required double? borderRadius,
  7. required bool isLoading,
  8. required VoidCallback? onPressed,
  9. required Widget child,
})

Implementation

const AtOnboardingButton({
  Key? key,
  required this.backgroundColor,
  required this.borderColor,
  required this.height,
  required this.width,
  required this.borderRadius,
  required this.isLoading,
  required this.onPressed,
  required this.child,
}) : super(key: key);