Say constructor

Say({
  1. required List<TextSpan> text,
  2. PersonSayDirection personSayDirection = PersonSayDirection.LEFT,
  3. BoxDecoration? boxDecoration,
  4. EdgeInsetsGeometry? padding,
  5. EdgeInsetsGeometry? margin,
  6. Widget? person,
  7. Widget? background,
  8. Widget? header,
  9. Widget? bottom,
  10. int? speed,
})

Create a text animation to be shown inside TalkDialog.show

Implementation

Say({
  required this.text,
  this.personSayDirection = PersonSayDirection.LEFT,
  this.boxDecoration,
  this.padding,
  this.margin,
  this.person,
  this.background,
  this.header,
  this.bottom,
  this.speed,
});