connectOtp method
Implementation
@override
Future<void> connectOtp({required String otp}) async {
if (!isEnabled.value || !isReady.value) return;
step.value = EmailLoginStep.loading;
final message = ConnectOtp(otp: otp).toString();
await _webViewController.runJavaScript('sendW3Message($message)');
}