events property

List<Events> events

Get all Events in this list

Implementation

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