getSingleCookie abstract method

Cookie? getSingleCookie(
  1. Uri uri,
  2. String name
)

Retrieves a single cookie by name for the specified URI.

Parameters:

  • uri: The URI to search cookies for
  • name: The name of the cookie to retrieve

Returns: The cookie if found, or null if not found

Throws: No exceptions - returns null for missing cookies across all platforms

Implementation

Cookie? getSingleCookie(Uri uri, String name);