getTitle method
Gets the title of the browser action.
Implementation
Future<String> getTitle(TabDetails details) async {
var $res = await promiseToFuture<String>(
$js.chrome.browserAction.getTitle(details.toJS));
return $res;
}
Gets the title of the browser action.
Future<String> getTitle(TabDetails details) async {
var $res = await promiseToFuture<String>(
$js.chrome.browserAction.getTitle(details.toJS));
return $res;
}