totalBytes property

double get totalBytes

Number of bytes in the whole file, without considering file compression, or -1 if unknown.

Implementation

double get totalBytes => _wrapped.totalBytes;
set totalBytes (double v)

Implementation

set totalBytes(double v) {
  _wrapped.totalBytes = v;
}