Say constructor
Say({
- required List<
TextSpan> text, - PersonSayDirection personSayDirection = PersonSayDirection.LEFT,
- BoxDecoration? boxDecoration,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- Widget? person,
- Widget? background,
- Widget? header,
- Widget? bottom,
- 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,
});