holiday property

List<Holiday> holiday

Get all Holiday in this list

Implementation

List<Holiday> get holiday => _drl
    .where((dr) => dr is Holiday)
    .map((e) => e as Holiday)
    .toList(growable: false);