sidePanel property
JSSidePanel
get
sidePanel
Use the chrome.sidePanel
API to host content in the browser's side panel
alongside the main content of a webpage.
Implementation
JSSidePanel get sidePanel {
var sidePanelNullable = this.sidePanelNullable;
if (sidePanelNullable == null) {
throw ApiNotAvailableException('chrome.sidePanel');
}
return sidePanelNullable;
}