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