Cookie.create constructor
Cookie.create()
Implementation
factory Cookie.create() {
if (kIsWeb) {
return CookieHandlerWeb();
} else {
return CookieHandlerStubs();
}
}
factory Cookie.create() {
if (kIsWeb) {
return CookieHandlerWeb();
} else {
return CookieHandlerStubs();
}
}