Source constructor

Source(
  1. String? id,
  2. String? name,
  3. String? description,
  4. String? url,
  5. String? category,
  6. String? language,
  7. String? country,
)

Implementation

Source(
  this.id,
  this.name,
  this.description,
  this.url,
  this.category,
  this.language,
  this.country,
);