displayValues property

List<String> get displayValues

Returns the display values for this enum parameter (without quotes)

Implementation

List<String> get displayValues {
  if (values == null) return [];
  return values!.map((v) => _stripQuotes(v)).toList();
}