isDone property

bool get isDone

True when the upload has completed (sent == total and total > 0).

Implementation

bool get isDone => total > 0 && sent >= total;