kEvents top-level property

LinkedHashMap<DateTime, List<Event>> kEvents
final

Example events.

Using a LinkedHashMap is highly recommended if you decide to use a map.

Implementation

final kEvents = LinkedHashMap<DateTime, List<Event>>(
  equals: isSameDay,
  hashCode: getHashCode,
)..addAll(_kEventSource);