ItemOption constructor

ItemOption({
  1. String? title,
  2. Widget? icon,
  3. dynamic value,
  4. List<ItemOption>? subs,
  5. bool enable = true,
  6. TextStyle textStyle = const TextStyle(color: Color(0xff333333), fontSize: 12),
  7. bool isCheck = false,
})

Implementation

ItemOption({
  this.title,
  this.icon,
  this.value,
  this.subs,
  this.enable = true,
  this.textStyle = const TextStyle(color: Color(0xff333333), fontSize: 12),
  this.isCheck = false,
});