exit static method
Implementation
static Widget exit({
required VoidCallback? onPressed,
double? width,
}) {
return CustomActionButton(
text: 'Exit',
onPressed: onPressed,
underlinedChar: 'E',
icon: Icons.exit_to_app,
borderColor: Colors.grey[600],
textColor: Colors.grey[600],
width: width,
);
}