transferStatistics property

TransferStatistics get transferStatistics

Gets data transfer statistics for this service.

Returns

  • The data transfer statistics

Throws

  • An exception if it fails

Implementation

static TransferStatistics get transferStatistics {
  final OperationResult resultString = objectMethod(
    0,
    'TrafficService',
    'getTransferStatistics',
  );

  return TransferStatistics.init(resultString['result']);
}