Formats the DateTime to WMATA API format.
The WMATA API format is a string in the format of YYYY-MM-DDTHH:mm:ss.
YYYY-MM-DDTHH:mm:ss
String toWmataString() => toIso8601String().replaceAll(RegExp(r'\.\d+'), '');