clickDownloadButton method
void
clickDownloadButton()
Implementation
void clickDownloadButton() async {
if (shareCodeController.text.length < 4) {
showToast("Invalid Share Code. Please enter 4 digit share code.");
return;
}
showLoader.value = true;
await addDelay(seconds: 2);
_webController?.evaluateJavascript(
source:
"document.getElementsByClassName('button_btn__1dRFj')[1].click();");
showLoader.value = false;
}