Flutter: Resend an OTP

Examples

Resend an email signup confirmation

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