name property

String name

Returns the name of the enum field

Implementation

String get name {
  return map<String>(
    camel: 'camel',
    capital: 'capital',
    constant: 'constant',
    dot: 'dot',
    header: 'header',
    kebab: 'kebab',
    no: 'no',
    none: 'none',
    pascal: 'pascal',
    path: 'path',
    sentence: 'sentence',
    snake: 'snake',
    swap: 'swap',
  );
}