submit method

void submit()

Implementation

void submit() {
  if (validate()) {
    save();
    widget.onSubmitted?.call();
  }
}