AtOnboardingSecondaryButton constructor
const
AtOnboardingSecondaryButton({})
Implementation
const AtOnboardingSecondaryButton({
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,
);