checkboxListTile function

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

Implementation

Widget checkboxListTile(AppModel app, BuildContext context, String title,
        bool? value, ValueChanged<bool?>? onChanged) =>
    StyleRegistry.registry()
        .styleWithApp(app)
        .frontEndStyle()
        .listTileStyle()
        .checkboxListTile(app, context, title, value, onChanged);