LocalSearchAndReplaceController constructor

LocalSearchAndReplaceController({
  1. required TickerProvider tickerProvider,
  2. required double cellWidth,
  3. required double cellHeight,
  4. required TextEditingController textController,
  5. 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,
      );