ListOptions constructor

ListOptions({
  1. required String indexList,
  2. required List list,
  3. String? title,
  4. String? description,
})

Implementation

ListOptions({
  required this.indexList,
  required this.list,
  this.title,
  this.description
});