What is Enums or Enumeration?
In Dart, Enums (short for enumerations) are a special data type used to represent a fixed number of constant values.
Enums allow you to define a set of named constants, known as enumeration constants, within a group.
Syn...