close method
Closes any resources or UI related to the authentication process.
This method is called to close the InAppWebView, if applicable.
Implementation
@override
void close() {
url_launcher.supportsCloseForLaunchMode(_launchMode).then((value) => {
if (value) {url_launcher.closeInAppWebView()}
});
}