Sac constructor

const Sac({
  1. required String title,
  2. required String content,
  3. String? email,
  4. String? phone1,
  5. String? phone1Caption,
  6. String? phone2,
  7. String? phone2Caption,
})

Implementation

const Sac({
  required this.title,
  required this.content,
  this.email,
  this.phone1,
  this.phone1Caption,
  this.phone2,
  this.phone2Caption,
});