verify abstract method

Future<AuthenticationResponse> verify({
  1. required String token,
})

Verifies a magic link token.

In order to effectively do this, the link generated should refer back to the app, then the t URL parameter should be extracted and sent to this function. Upon successful authentication an AuthenticationResponse is returned.

Implementation

Future<AuthenticationResponse> verify({required String token});