transferStatistics property
TransferStatistics
get
transferStatistics
Returns transfer statistics for SDK network usage.
Returns a TransferStatistics object containing counters and metrics about network usage performed by the traffic service. This information can be used for diagnostics or to display usage to end users.
Returns
- TransferStatistics: the current transfer statistics snapshot.
Implementation
static TransferStatistics get transferStatistics {
final OperationResult resultString = staticMethod(
'SdkSettings',
'getTransferStatistics',
);
return TransferStatistics.init(resultString['result']);
}