getTotalBytesSent method

Future<int> getTotalBytesSent()

Implementation

Future<int> getTotalBytesSent() async {
  var result = await _wanCommonService!.invokeAction("GetTotalBytesSent", {});
  return num.tryParse(result["NewTotalBytesSent"]!) as FutureOr<int>? ?? 0;
}