toString method
Returns string representation of the enum
if _name
is a non-null string, then its
used in the result, otherwise not
Implementation
toString() {
return 'Enum.$runtimeType.$_name:$_value';
}
Returns string representation of the enum
if _name
is a non-null string, then its
used in the result, otherwise not
toString() {
return 'Enum.$runtimeType.$_name:$_value';
}