TextFlipper constructor
const
TextFlipper({
- Key? key,
- FlipperCharset charset = FlipperCharset.all,
- required String text,
- Duration duration = const Duration(milliseconds: 500),
- Curve curve = Curves.easeInOut,
Creates a TextFlipper.
Implementation
const TextFlipper({
super.key,
this.charset = FlipperCharset.all,
required this.text,
this.duration = const Duration(milliseconds: 500),
this.curve = Curves.easeInOut,
});