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