SecondaryButton constructor
const
SecondaryButton({})
Implementation
const SecondaryButton({
Key? key,
required String label,
void Function()? onPressed,
bool isLoading = false,
}) : super(
key: key,
label: label,
backgroundColor: Colors.white,
textColor: graphite,
onPressed: onPressed,
isLoading: isLoading,
shadowOpacity: 0.2,
);