YesNoField constructor

const YesNoField({
  1. Key? key,
  2. String? label,
  3. required void onChanged(
    1. String?
    ),
  4. String? value,
  5. bool readOnly = false,
})

Implementation

const YesNoField({super.key, this.label, required this.onChanged, this.value, this.readOnly = false});