toValue method
Implementation
String toValue() {
switch (this) {
case Include.all:
return 'ALL';
case Include.any:
return 'ANY';
case Include.none:
return 'NONE';
}
}
String toValue() {
switch (this) {
case Include.all:
return 'ALL';
case Include.any:
return 'ANY';
case Include.none:
return 'NONE';
}
}