WhyConfig constructor

WhyConfig({
  1. String label = "Pourquoi ?",
  2. dynamic attendedValue,
  3. String placeholder = "Indiquer une réponse...",
  4. bool isMandatory = false,
})

Implementation

WhyConfig({
  this.label = "Pourquoi ?",
  this.attendedValue,
  this.placeholder = "Indiquer une réponse...",
  this.isMandatory = false,
});