label property

String get label

Human-readable label.

Implementation

String get label => switch (this) {
      TCsvFileFormat.csv => 'CSV (Comma ,)',
      TCsvFileFormat.tsv => 'TSV (Tab \\t)',
      TCsvFileFormat.semicolon => 'CSV (Semicolon ;)',
      TCsvFileFormat.pipe => 'PSV (Pipe |)',
      TCsvFileFormat.json => 'JSON (.json)',
      TCsvFileFormat.custom => 'Custom Delimiter',
    };