Convert nullable TimeOfDay to ATC time format
String? toAtcTimeString({bool withSeparator = false}) { if (this != null) { return this!.toAtcTimeString(withSeparator: withSeparator); } return null; }