name property

String name

Implementation

String get name => id
    .split('_')
    .map((e) => '${e.substring(0, 1).toUpperCase()}${e.substring(1)}')
    .join('');