delete static method
Implementation
static Widget delete({
required VoidCallback? onPressed,
bool isLoading = false,
double? width,
}) {
return CustomActionButton(
text: 'Delete',
onPressed: onPressed,
isLoading: isLoading,
underlinedChar: 'D',
icon: Icons.delete,
borderColor: Colors.red,
textColor: Colors.red,
width: width,
);
}