ConsentInfo constructor

ConsentInfo({
  1. required String id,
  2. required String type,
  3. required String title,
  4. required String content,
  5. DateTime? acceptedAt,
})

Implementation

ConsentInfo({
  required this.id,
  required this.type,
  required this.title,
  required this.content,
  this.acceptedAt,
});