CookieStore constructor
Implementation
CookieStore({
  /// The unique identifier for the cookie store.
  required String id,
  /// Identifiers of all the browser tabs that share this cookie store.
  required List<int> tabIds,
}) : _wrapped = $js.CookieStore(
        id: id,
        tabIds: tabIds.toJSArray((e) => e),
      );