toWidget method

  1. @override
Widget toWidget(
  1. BuildContext context,
  2. String group,
  3. bool? value
)
override

Builds the current field into a Widget to be used for input in the side panel.

Implementation

@override
Widget toWidget(BuildContext context, String group, bool? value) {
  return Switch(
    value: value ?? initialValue ?? true,
    onChanged: (value) => updateField(context, group, value),
  );
}