settings method

Reports which types of data are currently selected in the 'Clear browsing data' settings UI. Note: some of the data types included in this API are not available in the settings UI, and some UI settings control more than one data type listed here.

Implementation

Future<SettingsCallbackResult> settings() async {
  var $res = await promiseToFuture<$js.SettingsCallbackResult>(
      $js.chrome.browsingData.settings());
  return SettingsCallbackResult.fromJS($res);
}