BannerModel constructor

BannerModel({
  1. int? id,
  2. String? title,
  3. String? description,
  4. String? photo,
  5. int? order,
  6. DateTime? createdAt,
})

Implementation

BannerModel({
  this.id,
  this.title,
  this.description,
  this.photo,
  this.order,
  this.createdAt,
});