StartEntity constructor

StartEntity({
  1. String? id,
  2. String? title,
  3. String? info,
  4. Function? onClick,
})

Implementation

StartEntity({
  this.id,
  this.title,
  this.info,
  this.onClick,
});