Cookie constructor
Cookie({
- required String path,
- required num expires,
- required num size,
- required bool secure,
- required bool session,
- bool? partitionKeyOpaque,
- required String name,
- required String value,
- required String domain,
- bool? httpOnly,
- String? sameSite,
- String? priority,
- String? sourceScheme,
- CookiePartitionKeyOrString? partitionKey,
Implementation
Cookie({
required this.path,
required this.expires,
required this.size,
required this.secure,
required this.session,
this.partitionKeyOpaque,
required this.name,
required this.value,
required this.domain,
this.httpOnly,
this.sameSite,
this.priority,
this.sourceScheme,
this.partitionKey,
});