CountryPickerFieldWidget constructor

const CountryPickerFieldWidget({
  1. Key? key,
  2. required Map<String, dynamic> schema,
  3. void onChanged(
    1. String,
    2. dynamic
    )?,
})

Implementation

const CountryPickerFieldWidget({
  Key? key,
  required this.schema,
  this.onChanged,
}) : super(key: key);