LocalSearchAndReplaceController constructor
LocalSearchAndReplaceController({
- required TickerProvider tickerProvider,
- required double cellWidth,
- required double cellHeight,
- required TextEditingController textController,
- VoidCallback? onDismiss,
Implementation
LocalSearchAndReplaceController({
required TickerProvider tickerProvider,
required this.cellWidth,
required this.cellHeight,
required this.textController,
this.onDismiss,
}) : searchAndReplaceAnimationController = AnimationController(
duration: const Duration(milliseconds: 200),
vsync: tickerProvider,
);