ModernFormCircularCheckBox constructor

const ModernFormCircularCheckBox({
  1. Key? key,
  2. String? title,
  3. bool? value,
  4. void onChanged(
    1. bool?
    )?,
})

Implementation

const ModernFormCircularCheckBox(
    {Key? key, this.title, this.value, this.onChanged})
    : super(key: key);