complete method
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;
}