TomussText constructor

  1. @MappableConstructor.new()
TomussText({
  1. required String title,
  2. required String author,
  3. required DateTime? date,
  4. required double position,
  5. String value = "",
  6. String comment = "",
  7. bool isValidText = false,
  8. bool isHidden = false,
  9. String theId = "",
})

Implementation

@MappableConstructor()
TomussText({
  required super.title,
  required super.author,
  required super.date,
  required super.position,
  this.value = "",
  this.comment = "",
  this.isValidText = false,
  this.isHidden = false,
  this.theId = "",
});