ImageModel constructor

ImageModel({
  1. String? title,
  2. String? url,
  3. String? categoryId,
  4. String? thumbs,
  5. String? memo,
  6. String? createTime,
})

Implementation

ImageModel({
  this.title,
  this.url,
  this.categoryId,
  this.thumbs,
  this.memo,
  this.createTime,
});