parseCookieValue static method

String parseCookieValue(
  1. String cookie
)

Implementation

static String parseCookieValue(String cookie) {
  var cookieVal = cookie.split(";").first;
  return cookieVal.split("=").last;
}