group method
Adds one or more tabs to a specified group, or if no group is specified, adds the given tabs to a newly created group.
Implementation
Future<int> group(GroupOptions options) async {
var $res = await promiseToFuture<int>($js.chrome.tabs.group(options.toJS));
return $res;
}