NiceCookieCategory constructor

const NiceCookieCategory({
  1. required NiceCookieCategoryType type,
  2. required String title,
  3. required String description,
  4. bool required = false,
})

Implementation

const NiceCookieCategory({
  required this.type,
  required this.title,
  required this.description,
  this.required = false,
});