Item constructor

Item({
  1. int? index,
  2. String? title,
  3. bool? active,
  4. dynamic customData,
})

Implementation

Item({this.index, this.title, this.active, this.customData});