Data constructor

Data({
  1. int? id,
  2. String? createdAt,
  3. String? title,
  4. String? content,
  5. int? status,
  6. int? appType,
  7. Image? image,
})

Implementation

Data(
    {this.id,
    this.createdAt,
    this.title,
    this.content,
    this.status,
    this.appType,
    this.image});