TreeOption constructor

TreeOption({
  1. required String key,
  2. required String label,
  3. String? leadsTo,
  4. String? script,
})

Implementation

TreeOption({
  required this.key,
  required this.label,
  this.leadsTo,
  this.script,
});