getDownloadSpeed static method

Future<double> getDownloadSpeed()

Get download speed in Mbps

Implementation

static Future<double> getDownloadSpeed() async {
  final double speed = await _channel.invokeMethod('getDownloadSpeed');
  return speed;
}