AnimatedErrorMessage constructor
- Key? key,
- required Signal<
String?> connect, - required Widget to(
- BuildContext context,
- String error
- FormAnimationEffect effect = FormAnimationEffect.slide,
- Duration duration = const Duration(milliseconds: 250),
- Curve curve = Curves.easeOutCubic,
Creates an animated error message widget.
Implementation
const AnimatedErrorMessage({
super.key,
required this.connect,
required this.to,
this.effect = FormAnimationEffect.slide,
this.duration = const Duration(milliseconds: 250),
this.curve = Curves.easeOutCubic,
});