toAuditNotificationType method

AuditNotificationType toAuditNotificationType()

Implementation

AuditNotificationType toAuditNotificationType() {
  switch (this) {
    case 'SNS':
      return AuditNotificationType.sns;
  }
  throw Exception('$this is not known in enum AuditNotificationType');
}