CustomYesNo constructor

CustomYesNo({
  1. bool? skipped,
  2. bool? data,
  3. int? timeTaken,
  4. String name = "YesNo",
  5. required int key,
})

Implementation

CustomYesNo({
    this.skipped,
    this.data,
    this.timeTaken,
    this.name = "YesNo",
    required this.key,
});