SimpleTextEntity constructor

SimpleTextEntity({
  1. required String? appId,
  2. String? description,
  3. String? title,
  4. String? text,
  5. StorageConditionsEntity? conditions,
  6. int? textAlign,
})

Implementation

SimpleTextEntity({
  required this.appId,
  this.description,
  this.title,
  this.text,
  this.conditions,
  this.textAlign,
});