getCookieString method

String getCookieString(
  1. String url
)

Gets all cookies that apply to the specified URL.

url The URL that the cookies are valid for. Returns a string containing all the key-value cookie pairs for the specified URL.

Implementation

String getCookieString(String url) {
  return '';
}