calendarific_dart 1.0.2 copy "calendarific_dart: ^1.0.2" to clipboard
calendarific_dart: ^1.0.2 copied to clipboard

A dart package to retrieve data from calendarific API. Get holidays from specific country, year and moreover retreieve languages and countries from their API.

example/calendarific_dart_example.dart

import 'package:calendarific_dart/calendarific_dart.dart';

Future<void> main() async {
  const String apiKey = '';
  final CalendarificApi api = CalendarificApi(apiKey);
  print('Countries: ${await api.getCountries()}');
  print('Languages: ${await api.getLanguages()}');
  print('Holidays: ${await api.getHolidays(countryCode: 'DE', year: '2022')}');
}
3
likes
130
pub points
30%
popularity

Publisher

verified publishermarkus.jayjah.de

A dart package to retrieve data from calendarific API. Get holidays from specific country, year and moreover retreieve languages and countries from their API.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

chopper

More

Packages that depend on calendarific_dart