BaseUploadModel constructor

BaseUploadModel({
  1. String? id,
  2. num? width,
  3. num? height,
  4. String? url,
  5. num? createdAt,
  6. bool isSelected = false,
})

Implementation

BaseUploadModel({
  this.id,
  this.width,
  this.height,
  this.url,
  this.createdAt,
  this.isSelected = false,
});