totalBytes property

DoubleDelta? get totalBytes

The change in totalBytes, if any.

Implementation

DoubleDelta? get totalBytes => _wrapped.totalBytes?.let(DoubleDelta.fromJS);
set totalBytes (DoubleDelta? v)

Implementation

set totalBytes(DoubleDelta? v) {
  _wrapped.totalBytes = v?.toJS;
}