SelectBase constructor

const SelectBase({
  1. Key? key,
  2. List<SelectData>? data,
  3. String? selectedid,
  4. required String title,
  5. required SelectStyle style,
  6. bool? withSearch = true,
  7. bool onlySelect = false,
  8. double? fontSize,
  9. bool isFull = false,
  10. bool fullScreen = true,
  11. double? offset,
})

Implementation

const SelectBase({
  Key? key,
  this.data,
  this.selectedid,
  required this.title,
  required this.style,
  this.withSearch = true,
  this.onlySelect = false,
  this.fontSize,
  this.isFull = false,
  this.fullScreen = true,
  this.offset,
}) : super(key: key);