taskCompleted property

bool taskCompleted
inherited

The operation has been executed, but we don't know anything about acknowledgment

Implementation

bool get taskCompleted {
  if (!operationSucceeded || hasWriteErrors) {
    return false;
  }
  return true;
}