Flutter: Resend an OTP | Supabase Docs (original) (raw)

Examples

Resend an email signup confirmation

final ResendResponse res = await supabase.auth.resend(
  type: OtpType.signup,
  email: 'email@example.com',
);