checkboxListTile property

CheckboxListTile checkboxListTile

Implementation

CheckboxListTile get checkboxListTile => CheckboxListTile(
      key: Key('CheckboxListTile$_key'),
      value: _checkValue,
      onChanged: toggle as void Function(bool?)? ??
          onToggle as void Function(bool?)?,
      activeColor: activeColor,
      title: title ?? onTitle(),
      subtitle: subtitle ?? onSubtitle(),
      isThreeLine: isThreeLine ?? false,
      dense: dense,
      secondary: secondary ?? onSecondary(),
      selected: selected ?? false,
      controlAffinity: controlAffinity!,
    );