getHoliday method
Implementation
Future<HolidayDto?> getHoliday (
DateTime? date
) async {
String path = "/pub/holiday/$date";
return HolidayDto.fromJson(
await get(path, requireAuthorization:true) ?? {}
);
}
Future<HolidayDto?> getHoliday (
DateTime? date
) async {
String path = "/pub/holiday/$date";
return HolidayDto.fromJson(
await get(path, requireAuthorization:true) ?? {}
);
}