toOfferingType method

OfferingType toOfferingType()

Implementation

OfferingType toOfferingType() {
  switch (this) {
    case 'RECURRING':
      return OfferingType.recurring;
  }
  throw Exception('$this is not known in enum OfferingType');
}