signInWithCode method

Future signInWithCode(
  1. String email,
  2. String code
)

Implementation

Future signInWithCode(String email, String code) async {
  await _supabaseService.client.auth
      .verifyOTP(type: OtpType.magiclink, email: email, token: code);
}