onComplete method

Future<bool> onComplete()

Implementation

Future<bool> onComplete() async {
  busy = true;

  bool ok = true;

  // Post the Form
  if (ok && dirty) ok = await complete();

  busy = false;
  return ok;
}