fastnet 1.0.2 fastnet: ^1.0.2 copied to clipboard
A Dart package that allows you to test your network download and upload speed using fast.com.
FastNet #
A Dart package that allows you to test your network download and upload speed using [fast.com](https://fast.com)
Install #
dependencies:
fastnet: ^1.0.2
Usage #
var fastnet = FastNet(isListenable: false);
var response = await fastnet.getSpeed();
response.listen((Result event) {
print(event.downloadSpeedValue);
});