SubDialog constructor

SubDialog({
  1. required Entity initial,
  2. int? startTime,
  3. int? endTime,
  4. bool? withoutTags,
  5. String? style,
  6. String? text,
})

Implementation

SubDialog({
  required Entity initial,
  this.startTime,
  this.endTime,
  this.withoutTags,
  this.style,
  this.text,
}) {
  _initial = initial;
}