getTotalBytesReceived method
Implementation
Future<int> getTotalBytesReceived() async {
var result =
await _wanCommonService!.invokeAction("GetTotalBytesReceived", {});
return num.tryParse(result["NewTotalBytesReceived"]!) as FutureOr<int>? ??
0;
}