toOfferingTransactionType method
Implementation
OfferingTransactionType toOfferingTransactionType() {
switch (this) {
case 'PURCHASE':
return OfferingTransactionType.purchase;
case 'RENEW':
return OfferingTransactionType.renew;
case 'SYSTEM':
return OfferingTransactionType.system;
}
throw Exception('$this is not known in enum OfferingTransactionType');
}