toValue method
Implementation
String toValue() {
switch (this) {
case AgentStatus.online:
return 'ONLINE';
case AgentStatus.offline:
return 'OFFLINE';
}
}
String toValue() {
switch (this) {
case AgentStatus.online:
return 'ONLINE';
case AgentStatus.offline:
return 'OFFLINE';
}
}