toApprovalState method
Implementation
ApprovalState toApprovalState() {
switch (this) {
case 'APPROVE':
return ApprovalState.approve;
case 'REVOKE':
return ApprovalState.revoke;
}
throw Exception('$this is not known in enum ApprovalState');
}