toRenewalType method

RenewalType toRenewalType()

Implementation

RenewalType toRenewalType() {
  switch (this) {
    case 'AUTO_RENEW':
      return RenewalType.autoRenew;
    case 'EXPIRE':
      return RenewalType.expire;
  }
  throw Exception('$this is not known in enum RenewalType');
}