toValue method
Implementation
String toValue() {
switch (this) {
case BooleanOperator.and:
return 'And';
case BooleanOperator.or:
return 'Or';
}
}
String toValue() {
switch (this) {
case BooleanOperator.and:
return 'And';
case BooleanOperator.or:
return 'Or';
}
}