getTotalBytesReceived method
Returns the amount of total received sent since the router is up/tracking statistics
Implementation
Future<int> getTotalBytesReceived() async {
final result =
await _wanCommonService!.invokeAction('GetTotalBytesReceived', {});
return num.tryParse(result['NewTotalBytesReceived']!) as FutureOr<int>? ??
0;
}