remove method

  1. @override
Future<void> remove(
  1. String id
)
override

Removes the schedule entry with the given id.

Implementation

@override
/// Removes the schedule entry with the given [id].
Future<void> remove(String id) async {
  _entries.remove(id);
}