https://github.com/dammak/fastnet
A Dart package that allows you to test your network download and upload speed using fast.com
https://github.com/dammak/fastnet
dartlang download-speed fast flutter networkspeed upload-speed
Last synced: about 2 months ago
JSON representation
A Dart package that allows you to test your network download and upload speed using fast.com
- Host: GitHub
- URL: https://github.com/dammak/fastnet
- Owner: DAMMAK
- License: mit
- Created: 2020-09-29T06:47:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-13T15:10:37.000Z (almost 3 years ago)
- Last Synced: 2025-03-23T01:36:22.911Z (2 months ago)
- Topics: dartlang, download-speed, fast, flutter, networkspeed, upload-speed
- Language: Dart
- Homepage:
- Size: 23.4 KB
- Stars: 6
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# FastNet
[](https://github.com/DAMMAK/FastNet)[](https://github.com/DAMMAK/FastNet)[](https://github.com/DAMMAK/FastNet)
```
A Dart package that allows you to test your network download and upload speed using [fast.com](https://fast.com)```
## Install
```dart
dependencies:
fastnet: ^1.0.2```
## Usage
```dart
var fastnet = FastNet(isListenable: false);
var response = await fastnet.getSpeed();
response.listen((Result event) {
print(event.downloadSpeedValue);
});```
### Inspired
https://github.com/sindresorhus/fast-cli