my Push Trigger Option Menu
fun myPushTriggerOptionMenu(channel: UikitGroupChannel, contract: ChannelMenuDialogContract?, onClick: () -> Unit = {
contract?.onClickMyPushTriggerOption()
}): DialogMenuDetail
Returns the default "my push trigger option" menu.
Return
The DialogMenuDetail for the my push trigger option menu.
Since
1.0.0-beta.2
Parameters
channel
The channel to show the menu for.
contract
The contract to handle the menu click actions. If you wish to customize the onClick action, you can pass null
here.
on Click
The action to be executed when the menu is clicked. Defaults to ChannelMenuDialogContract.onClickMyPushTriggerOption.