cookies method

Future<List<Cookie>> cookies({
  1. List<String>? urls,
})

If no URLs are specified, this method returns cookies for the current page URL. If URLs are specified, only cookies for those URLs are returned.

Implementation

Future<List<Cookie>> cookies({List<String>? urls}) {
  return devTools.network.getCookies(urls: urls);
}