SprintAll function

String SprintAll(
  1. Iterable<Object?> values
)

Returns all values in values concatenated without separators.

Implementation

String SprintAll(Iterable<Object?> values) =>
    stringForProfile(_join(values, sep: ''), Writer.colorProfile);