complete method

  1. @override
Future<bool> complete()
override

Implementation

@override
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;
}