add static method
Implementation
static Widget add({
required VoidCallback? onPressed,
bool isLoading = false,
double? width,
}) {
return CustomActionButton(
text: 'Add',
onPressed: onPressed,
isLoading: isLoading,
underlinedChar: 'A',
icon: Icons.add,
width: width,
);
}