colombia_holidays 2.1.5 copy "colombia_holidays: ^2.1.5" to clipboard
colombia_holidays: ^2.1.5 copied to clipboard

Flutter package to know the holidays in Colombia, you can get all the holidays per year or determine if a date is a holiday.

Colombia's holidays Check Package. #

Features #

[x] Get the Holidays of a year.
[x] Check if a date is a holiday.

Usage #

Create an instance of ColombiaHolidays and call the methods you need.

void main() async {
  ColombiaHolidays holidays = ColombiaHolidays();

// Get all holidays by Year
  final holidaysByYear = await holidays.getHolidays(year: 2020);
  // Result is a List of Holidays
  print(holidaysByYear);

// Check if a date is a holiday
  final isHoliday = await holidays.isHoliday(day: 20, month: 12, year: 2022);
  // Result is a bool
  print(isHoliday);
}
4
likes
160
points
261
downloads

Publisher

verified publishersmart-dev.com.co

Weekly Downloads

Flutter package to know the holidays in Colombia, you can get all the holidays per year or determine if a date is a holiday.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on colombia_holidays