AuthenticationDetails constructor

AuthenticationDetails({
  1. String? username,
  2. String? password,
  3. Map<String, String>? validationData,
  4. List<AttributeArg>? authParameters,
})

Implementation

AuthenticationDetails({
  this.username,
  this.password,
  this.validationData,
  this.authParameters,
});