AuthenticateResult constructor

AuthenticateResult({
  1. String? challenge,
  2. String? signature,
})

Creates a new AuthenticateResult instance.

Both challenge and signature are optional and can be null.

Implementation

AuthenticateResult({this.challenge, this.signature});