get method

Future<Vplan> get (Weekday day)

Retrieves the timetable changes for the given day of week.

Implementation

Future<Vplan> get(Weekday day) async {
  String response = await this.getString(day);
  return Parser.parse(response);
}