0 purchases
dart adif
dart_adif #
A Dart library to read and write ADIF (Amateur Radio Data Interchange Format) files.
Usage #
A simple usage example:
import 'dart:io';
import 'package:dart_adif/dart_adif.dart';
void main() async {
final adifStream = File('testdata/xlog.adi').openRead();
final recordStream = adifStream.transform(AdifTransformer());
await for (var record in recordStream) {
print(record);
}
}
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.