toVerifySoftwareTokenResponseType method

VerifySoftwareTokenResponseType toVerifySoftwareTokenResponseType()

Implementation

VerifySoftwareTokenResponseType toVerifySoftwareTokenResponseType() {
  switch (this) {
    case 'SUCCESS':
      return VerifySoftwareTokenResponseType.success;
    case 'ERROR':
      return VerifySoftwareTokenResponseType.error;
  }
  throw Exception(
      '$this is not known in enum VerifySoftwareTokenResponseType');
}