StartTOTPRegistrationResponse constructor

StartTOTPRegistrationResponse({
  1. Details? details,
  2. String? totpId,
  3. String? uri,
  4. String? secret,
})

Implementation

factory StartTOTPRegistrationResponse({
  $2.Details? details,
  $core.String? totpId,
  $core.String? uri,
  $core.String? secret,
}) {
  final result = create();
  if (details != null) result.details = details;
  if (totpId != null) result.totpId = totpId;
  if (uri != null) result.uri = uri;
  if (secret != null) result.secret = secret;
  return result;
}