Datum constructor

Datum({
  1. String? desc,
  2. int? id,
  3. String? imagePath,
  4. int? isVisible,
  5. int? order,
  6. String? title,
  7. int? type,
  8. String? url,
})

Implementation

Datum({
	this.desc,
	this.id,
	this.imagePath,
	this.isVisible,
	this.order,
	this.title,
	this.type,
	this.url,
});