WebViewCookie constructor

const WebViewCookie({
  1. required String name,
  2. required String value,
  3. required String domain,
  4. String path = '/',
})

Creates a new WebViewCookieDelegate

Implementation

const WebViewCookie({
  required this.name,
  required this.value,
  required this.domain,
  this.path = '/',
});