signInResend method

Future<void> signInResend(
  1. String sessionId
)

Resend OTP for Sign In

Parameters:

  • String sessionId (required): Sign In Session ID

Implementation

Future<void> signInResend(String sessionId) async {
  final response = await signInResendWithHttpInfo(sessionId);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}