FlutterFormPage constructor

FlutterFormPage({
  1. required String heading,
  2. String? description,
  3. String? image,
  4. ImageLayout? imageLayout,
  5. required AnswerType answerType,
  6. List<String>? options,
})

Implementation

FlutterFormPage({
  required this.heading,
  this.description,
  this.image,
  this.imageLayout,
  required this.answerType,
  this.options,
});