value property
String
get
value
Implementation
String get value {
switch (this) {
case ClassificationType.public:
return "PUBLIC";
case ClassificationType.private:
return "PRIVATE";
case ClassificationType.confidential:
return "CONFIDENTIAL";
}
}