pageForm constructor

pageForm({
  1. Key? key,
  2. required Map<String, dynamic> inputJson,
  3. required Function isFinishClick,
  4. required AnswerModelFunction answerModelFunction,
  5. Color selectionColor = Colors.blueGrey,
  6. Color backgroundColor = Colors.white,
  7. Color textColor = Colors.black,
  8. Color buttonTextColor = Colors.black,
  9. Color bottomBackgroundColor = Colors.white,
  10. double buttonTextFontSize = 15.0,
  11. double questionTitleFontSize = 17.0,
  12. double questionTextFontSize = 15.0,
})

Implementation

pageForm({Key? key , required this.inputJson ,
  required this.isFinishClick ,
  required this.answerModelFunction ,
  this.selectionColor = Colors.blueGrey ,
  this.backgroundColor = Colors.white ,
  this.textColor = Colors.black,
  this.buttonTextColor = Colors.black,
  this.bottomBackgroundColor = Colors.white,
  this.buttonTextFontSize = 15.0 ,
  this.questionTitleFontSize = 17.0 ,
  this.questionTextFontSize = 15.0}) : super(key: key);