checkboxListTile method

  1. @override
Widget checkboxListTile(
  1. AppModel app,
  2. BuildContext context,
  3. String title,
  4. bool? value,
  5. ValueChanged<bool?>? onChanged,
)
override

Implementation

@override
Widget checkboxListTile(AppModel app, BuildContext context, String title,
    bool? value, ValueChanged<bool?>? onChanged) {
  return CheckboxListTile(
      title: Text(
        title,
      ),
      value: value,
      onChanged: onChanged);
}