toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ConditionOutcome.$true:
      return 'True';
    case ConditionOutcome.$false:
      return 'False';
  }
}