upload property

int get upload

Gets the overall uploaded data size in bytes

Returns

  • The overall uploaded data size in bytes

Implementation

int get upload {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'TransferStatistics',
    'getUpload',
  );
  return resultString['result'];
}