signIn abstract method

Future<String> signIn({
  1. required DeliveryMethod method,
  2. required String loginId,
  3. SignInOptions? options,
})

Authenticates an existing user using an OTP

The OTP code will be sent to the user identified by loginId via a delivery method of choice.

Implementation

Future<String> signIn({required DeliveryMethod method, required String loginId, SignInOptions? options});