toStringWithSeparator method

String toStringWithSeparator(
  1. String separator
)

Get the formatted String with the separator between each part

Implementation

String toStringWithSeparator(String separator) =>
    toString().replaceAll(Time.defaultSeparator, separator);