AtOnboardingPrimaryButton constructor

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

Implementation

const AtOnboardingPrimaryButton({
  Key? key,
  Color? backgroundColor,
  Color? borderColor,
  double? height,
  double? width,
  double? borderRadius,
  bool isLoading = false,
  VoidCallback? onPressed,
  required Widget child,
}) : super(
        key: key,
        backgroundColor: backgroundColor,
        borderColor: borderColor,
        height: height,
        width: width,
        borderRadius: borderRadius,
        isLoading: isLoading,
        onPressed: onPressed,
        child: child,
      );