Flutter: Resend an OTP

Examples

Resend an email signup confirmation

final ResendResponse res = await supabase.auth.resend(
  type: OtpType.email,
  email: '[email protected]',
);