A parser for ICalendar files (.ics)
A simple usage example:
import 'package:ical-parser/ical-parser.dart';
main() {
var calendar = '''
BEGIN:VCALENDAR
...
END:VCALENDAR
'''
var json = ICal.toJson(calendar);
}
Please file feature requests and bugs at the issue tracker.