Cookie constructor

const Cookie({
  1. required String name,
  2. required String value,
  3. required DateTime expires,
})

Implementation

const Cookie({
  required this.name,
  required this.value,
  required this.expires,
});