BsSelectBoxOption constructor

const BsSelectBoxOption({
  1. required dynamic value,
  2. required Widget text,
  3. String? searchable,
  4. dynamic other,
})

Implementation

const BsSelectBoxOption({
  required dynamic value,
  required Widget text,
  String? searchable,
  dynamic other,
})  : _searchable = searchable,
      _value = value,
      _text = text,
      _other = other;