toValue method
Implementation
String toValue() {
switch (this) {
case SessionState.active:
return 'Active';
case SessionState.history:
return 'History';
}
}
String toValue() {
switch (this) {
case SessionState.active:
return 'Active';
case SessionState.history:
return 'History';
}
}