toPolicyType method

PolicyType toPolicyType()

Implementation

PolicyType toPolicyType() {
  switch (this) {
    case 'RuleBased':
      return PolicyType.ruleBased;
    case 'TargetBased':
      return PolicyType.targetBased;
  }
  throw Exception('$this is not known in enum PolicyType');
}