get method

  1. @override
Future<ScheduleEntry?> get(
  1. String id
)
override

Retrieves the schedule entry with id, or null if absent.

Implementation

@override
Future<ScheduleEntry?> get(String id) async => _entries[id]?.entry;