BaseEntity constructor

const BaseEntity({
  1. String? name,
  2. String? icon,
  3. String? description,
  4. List<String>? images,
  5. String? id,
  6. required String $id,
  7. int? cstamp,
  8. String? cby,
  9. String? uby,
  10. int? ustamp,
})

Implementation

const BaseEntity({
  this.name,
  this.icon,
  this.description,
  this.logo,
  this.images,
  this.id,
  required this.$id,
  this.cstamp,
  this.cby,
  this.uby,
  this.ustamp,
});