UserSettings constructor
UserSettings({
- required bool isOnToolbar,
Implementation
UserSettings(
{
/// Whether the extension's action icon is visible on browser windows'
/// top-level toolbar (i.e., whether the extension has been 'pinned' by the
/// user).
required bool isOnToolbar})
: _wrapped = $js.UserSettings(isOnToolbar: isOnToolbar);