FancyElevatedButton.cURL constructor
FancyElevatedButton.cURL({
- String text = FancyStrings.cURL,
- void onPressed()?,
Implementation
factory FancyElevatedButton.cURL({
String text = FancyStrings.cURL,
void Function()? onPressed,
}) {
return FancyElevatedButton(
text: text,
onPressed: onPressed,
prefix: const Icon(Icons.copy),
);
}