CaptionEntity constructor

CaptionEntity({
  1. String? title,
  2. bool display = true,
  3. bool editable = true,
  4. InputDecorationEntity? inputDecoration,
  5. ConstrainsEntity? constrains,
  6. StyleEntity? style,
})

Implementation

CaptionEntity({
  this.title,
  this.display = true,
  this.editable = true,
  this.inputDecoration,
  this.constrains,
  this.style,
});