complete method

Future<bool> complete()
override

Implementation

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

  bool ok = true;

  ///////////////////
  /* Post the Form */
  ///////////////////
  if (dirty) for (var entry in items.entries) ok = await entry.value.complete();

  busy = false;
  return ok;
}