complete method
Implementation
@override
Future<bool> complete() async {
busy = true;
bool ok = true;
///////////////////
/* Post the Form */
///////////////////
if (dirty){
for (var entry in rows.entries) {
ok = await entry.value.complete();
}
}
busy = false;
return ok;
}