saveAction method
Implementation
Widget saveAction() => AButton(
text: widget.submitText ?? "Salvar",
onPressed: onSubmit,
color: widget.actionColor ?? Theme.of(context).primaryColor,
textColor: Colors.white,
borderColor: widget.actionColor,
);