Email constructor

Email(
  1. Config _config,
  2. Attestation _attestation,
  3. Auth _auth
)

Creates a new Email authentication handler.

This constructor is typically called internally by the Auth class and should not be used directly in application code.

Parameters

  • _config: The SDK configuration containing API endpoints and settings
  • _attestation: The attestation service for device verification
  • _auth: The parent Auth instance for accessing authentication utilities

Implementation

Email(this._config, this._attestation, this._auth);