ArButton.secondary constructor
ArButton.secondary({})
Implementation
factory ArButton.secondary({
Key? key,
required String label,
VoidCallback? onPressed,
bool isLoading = false,
bool isDisabled = false,
double? width,
}) => ArButton._(
key: key,
label: label,
variant: _ArButtonVariant.secondary,
onPressed: onPressed,
isLoading: isLoading,
isDisabled: isDisabled,
width: width,
);