toAtcTimeString method

String? toAtcTimeString({
  1. bool withSeparator = false,
})

Convert nullable TimeOfDay to ATC time format

Implementation

String? toAtcTimeString({bool withSeparator = false}) {
  if (this != null) {
    return this!.toAtcTimeString(withSeparator: withSeparator);
  }
  return null;
}