Cookie.fromSetCookieValue constructor Null safety

Cookie.fromSetCookieValue(
  1. String value
)

Creates a new cookie by parsing a header value from a 'set-cookie' header.

Implementation

factory Cookie.fromSetCookieValue(String value) {
  return new _Cookie.fromSetCookieValue(value);
}