LinkResponse constructor

LinkResponse({
  1. required LinkState state,
  2. String? redirectUrl,
  3. String? errorType,
  4. String? error,
  5. LinkProviderMFA? providerMfa,
})

Implementation

LinkResponse({
  required this.state,
  this.redirectUrl,
  this.errorType,
  this.error,
  this.providerMfa,
});