MultiSelectBase constructor

const MultiSelectBase({
  1. Key? key,
  2. List<SelectData>? data,
  3. List<String>? selectedid,
  4. required String title,
  5. required SelectStyle style,
})

Implementation

const MultiSelectBase({
  Key? key,
  this.data,
  this.selectedid,
  required this.title,
  required this.style,
}) : super(key: key);