tsvFormatRows function

String tsvFormatRows(
  1. Iterable<Iterable<Object?>> rows
)

Equivalent to DsvFormat.formatRows with a delimiter of "\t".

Implementation

String tsvFormatRows(Iterable<Iterable<Object?>> rows) => _tsv.formatRows(rows);