dartclub / ical

iCal library for Dart and Flutter
https://pub.dev/packages/ical
BSD 3-Clause "New" or "Revised" License
10 stars 14 forks source link

Why are todos and journals commented out? #23

Open 12people opened 4 months ago

12people commented 4 months ago

In serializer.dart, the following lines are commented out:

//export 'src/journal.dart';
//export 'src/timezone.dart';
//export 'src/todo.dart';

Yet in the readme, todos and journals are listed as completed.

What are their status? Can they be safely uncommented out?

lukas-h commented 4 months ago

Hey @12people, journal and todo seem to be implemented, but not timezone.

I am not sure, if they were 100% feature complete with the RFC standard 5545, but they are usable.

The implementation is also pre-Dart-3/-2, so it might not feel like the most modern interface yet. (A lot of nullable fields, etc.)...

12people commented 4 months ago

Great, thanks for the answer!