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