getCookie function

String? getCookie(
  1. Context c,
  2. String key
)

Implementation

String? getCookie(Context c, String key) {
  return getCookies(c)[key];
}