FormBottomView constructor

FormBottomView({
  1. required List<FormView> pages,
  2. int currentPage = 0,
  3. required PageController pageController,
  4. String routeName = "",
  5. required Function isFinishClick,
  6. required AnswerModelFunction answerModelFunction,
  7. required Color buttonTextColor,
  8. required Color bottomBackgroundColor,
  9. required double buttonTextFontSize,
})

Implementation

FormBottomView(
    {required this.pages,
      this.currentPage = 0,
      required this.pageController,
      this.routeName = "",
      required this.isFinishClick,
      required this.answerModelFunction,
      required this.buttonTextColor,
      required this.bottomBackgroundColor,
      required this.buttonTextFontSize
    });