Option constructor

Option({
  1. String? goToAction,
  2. String? goToSectionId,
  3. Image? image,
  4. bool? isOther,
  5. String? value,
})

Implementation

Option({
  this.goToAction,
  this.goToSectionId,
  this.image,
  this.isOther,
  this.value,
});