SweetCookieJar.from constructor

SweetCookieJar.from({
  1. required Response response,
})

Returns the new instance of SweetCookieJar based on an argument.

Implementation

factory SweetCookieJar.from({required Response response}) =>
    SweetCookieJarImpl.from(response: response);