toBillingMethod method

BillingMethod toBillingMethod()

Implementation

BillingMethod toBillingMethod() {
  switch (this) {
    case 'METERED':
      return BillingMethod.metered;
    case 'UNMETERED':
      return BillingMethod.unmetered;
  }
  throw Exception('$this is not known in enum BillingMethod');
}