reset static method
Implementation
static Widget reset({
required VoidCallback? onPressed,
double? width,
}) {
return CustomActionButton(
text: 'Reset',
onPressed: onPressed,
underlinedChar: 'R',
icon: Icons.refresh,
borderColor: Colors.orange,
textColor: Colors.orange,
width: width,
);
}