Media constructor

Media({
  1. int? id,
  2. String? website,
  3. String? whatsapp,
  4. String? facebook,
  5. String? instagram,
  6. String? email,
  7. String? phoneNumber,
  8. String? youtube,
  9. String? twitter,
  10. String? linkedin,
  11. String? tiktok,
})

Implementation

Media({
  this.id,
  this.website,
  this.whatsapp,
  this.facebook,
  this.instagram,
  this.email,
  this.phoneNumber,
  this.youtube,
  this.twitter,
  this.linkedin,
  this.tiktok,
});