shortLabel property

String get shortLabel

Short badge label.

Implementation

String get shortLabel => switch (this) {
      TCsvFileFormat.csv => 'CSV',
      TCsvFileFormat.tsv => 'TSV',
      TCsvFileFormat.semicolon => 'Semicolon',
      TCsvFileFormat.pipe => 'Pipe',
      TCsvFileFormat.json => 'JSON',
      TCsvFileFormat.custom => 'Custom',
    };