resendOtp method
Step 2b: Resend OTP to the same session.
Implementation
Future<OtpData?> resendOtp(String sessionToken) async {
try {
return await _phoneAuthService.resendOtp(sessionToken);
} on DioException catch (e) {
_handleError(e);
return null;
}
}