complete method
Implementation
Future<bool> complete() async {
busy = true;
bool ok = true;
//////////////////
/* Post the Row */
//////////////////
if (ok) ok = await _post();
////////////////
/* Mark Clean */
////////////////
if ((ok) && (fields != null))
fields!.forEach((field) => field.dirty = false);
busy = false;
return ok;
}