EnumValue constructor

const EnumValue({
  1. required String name,
  2. String? dbName,
})

Create a new enum value.

Implementation

const EnumValue({
  required this.name,
  this.dbName,
});