Constant constructor

Constant({
  1. int id = 0,
  2. String title = '',
  3. String titleWithOutBreak = '',
  4. String imagePath = '',
  5. dynamic colorData,
})

Implementation

Constant({
  this.id = 0,
  this.title = '',
  this.titleWithOutBreak = '',
  this.imagePath = '',
  this.colorData,
});