Listing constructor

Listing({
  1. String? fullDescription,
  2. String? language,
  3. String? shortDescription,
  4. String? title,
  5. String? video,
})

Implementation

Listing({
  this.fullDescription,
  this.language,
  this.shortDescription,
  this.title,
  this.video,
});