HOTP constructor

const HOTP(
  1. List<int> secret
)

Create a HOTP instance.

@param secret The HOTP secret.

final hotp = HOTP(secret);

Implementation

const HOTP(this.secret);