NxOptionsSelector constructor

const NxOptionsSelector({
  1. Key? key,
  2. List<NxOptions>? options,
  3. dynamic selected,
  4. ValueChanged? onSelected,
  5. Widget? child,
  6. bool useFilter = false,
  7. bool multipleSelect = false,
  8. String? label,
})

Implementation

const NxOptionsSelector({
  Key? key,
  this.options,
  this.selected,
  this.onSelected,
  this.child,
  this.useFilter = false,
  this.multipleSelect = false,
  this.label,
}) : super(key: key);