TotpSecretPlatform constructor

TotpSecretPlatform(
  1. int? codeIntervalSeconds,
  2. int? codeLength,
  3. DateTime? enrollmentCompletionDeadline,
  4. String? hashingAlgorithm,
  5. String secretKey,
)

Implementation

TotpSecretPlatform(
  this.codeIntervalSeconds,
  this.codeLength,
  this.enrollmentCompletionDeadline,
  this.hashingAlgorithm,
  this.secretKey,
) : super(token: _token);