TOtpAuthBody constructor

const TOtpAuthBody({
  1. String? timestampMs,
  2. String? organizationId,
  3. required String otpId,
  4. required String otpCode,
  5. required String targetPublicKey,
  6. String? apiKeyName,
  7. String? expirationSeconds,
  8. bool? invalidateExisting,
})

Implementation

const TOtpAuthBody({
   this.timestampMs,
   this.organizationId,
  required  this.otpId,
  required  this.otpCode,
  required  this.targetPublicKey,
   this.apiKeyName,
   this.expirationSeconds,
   this.invalidateExisting,
});