Display bool property as button without assigning an icon?

Normally if I want a bool property to display as a button instead of a check box, I’ll just tack on icon=‘BLANK1’ which is Blender’s default Blank icon but this looks bad some times since it creates a blank space instead of just not displaying an icon. Can this simply be assigned to display as a button in the bool property itself?

You can use toggle=True instead of icon=‘BLANK1’

Works perfect. Thanks!