throwIfNotOpened method
Implementation
void throwIfNotOpened({String message = ''}) {
if (!this.isOpened()) {
throw InAppBrowserNotOpenedException([
'Error: ${(message.isEmpty) ? '' : message + ' '}The browser is not opened.'
]);
}
}