Meta constructor

Meta({
  1. int? id,
  2. int? promotionId,
  3. String? key,
  4. String? value,
  5. String? createdAt,
  6. String? updatedAt,
})

Implementation

Meta({
  this.id,
  this.promotionId,
  this.key,
  this.value,
  this.createdAt,
  this.updatedAt,
});