WebViewCookie constructor

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

Constructs a new WebViewCookie.

Implementation

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