How to apply ternary operator on cheakbox
Widget _buildCheckboxHotels() =>widget.hotels=='1'? ListTile( leading: Icon(Icons.check), title: Text( 'Hotels', style: TextStyle( color: Colors.black54, fontSize: 16, ), ), trailing: Checkbox( value: Hotel, onChanged: (bool? value) { setState(() { this.Hotel = value!;…