setTitle method

Future<void> setTitle(
  1. SetTitleDetails details
)

Sets the title of the action. This shows up in the tooltip.

Implementation

Future<void> setTitle(SetTitleDetails details) async {
  await promiseToFuture<void>($js.chrome.action.setTitle(details.toJS));
}