checkboxListTile property

CheckboxListTile get checkboxListTile

Implementation

CheckboxListTile get checkboxListTile => CheckboxListTile(
      key: Key('CheckboxListTile$_key'),
      value: _checkValue,
      // ignore: avoid_positional_boolean_parameters
      onChanged: toggle as void Function(bool?)? ??
          // ignore: avoid_positional_boolean_parameters
          onToggle as void Function(bool?)?,
      activeColor: activeColor,
      checkColor: checkColor,
      enabled: enabled,
      tileColor: tileColor,
      title: title ?? onTitle(),
      subtitle: subtitle ?? onSubtitle(),
      isThreeLine: isThreeLine!,
      dense: dense,
      secondary: secondary ?? onSecondary(),
      selected: selected ?? false,
      controlAffinity: controlAffinity!,
      autofocus: autofocus!,
      contentPadding: contentPadding,
      tristate: tristate!,
      shape: shape,
      checkboxShape: checkboxShape,
      selectedTileColor: selectedTileColor,
      side: side,
      visualDensity: visualDensity,
      focusNode: focusNode,
      onFocusChange: onFocusChange,
      enableFeedback: enableFeedback,
    );