ComboBoxFuture constructor

const ComboBoxFuture({
  1. Key? key,
  2. required String label,
  3. required String hint,
  4. String loadingHint = '',
  5. Color accent = Colors.blue,
  6. double radius = 4,
  7. required Future<List> datas,
  8. ValueChanged? onChanged,
})

Implementation

const ComboBoxFuture({ Key? key, required this.label, required this.hint, this.loadingHint = '', this.accent = Colors.blue, this.radius = 4, required this.datas, this.onChanged}) : super(key: key);