Answer constructor

Answer({
  1. CustomRating? rating,
  2. CustomTextInput? text,
  3. CustomOpinionScale? opnionScale,
  4. CustomEmailInput? email,
  5. CustomYesNo? yesOrNo,
  6. CustomPhoneNumber? phoneNumber,
  7. CustomMultiChoice? multipleChoice,
})

Implementation

Answer({
  this.rating,
  this.text,
  this.opnionScale,
  this.email,
  this.yesOrNo,
  this.phoneNumber,
  this.multipleChoice,
});