displayName property
String
get
displayName
Get a user-friendly name
Implementation
String get displayName => switch (this) {
Environment.development => 'Development',
Environment.staging => 'Staging',
Environment.production => 'Production',
};