toCachePolicyType method

CachePolicyType toCachePolicyType()

Implementation

CachePolicyType toCachePolicyType() {
  switch (this) {
    case 'managed':
      return CachePolicyType.managed;
    case 'custom':
      return CachePolicyType.custom;
  }
  throw Exception('$this is not known in enum CachePolicyType');
}