NationalityChoice constructor

const NationalityChoice({
  1. Key? key,
  2. required List<String> list,
  3. required String? selectTitle,
  4. required void getValue(
    1. String?
    ),
  5. required String? selectedValues,
  6. required bool disabled,
})

Implementation

const NationalityChoice({
  Key? key,
  required this.list,
  required this.selectTitle,
  required this.getValue,
  required this.selectedValues,
  required this.disabled,
}) : super(key: key);