toComparison method
Implementation
Comparison toComparison() {
switch (this) {
case 'LT':
return Comparison.lt;
}
throw Exception('$this is not known in enum Comparison');
}
Comparison toComparison() {
switch (this) {
case 'LT':
return Comparison.lt;
}
throw Exception('$this is not known in enum Comparison');
}