ForwardMessageFunction typedef
ForwardMessageFunction =
dynamic Function(String conversationId, {bool isLastUser, String? postScript})
定义转发方法
isLastUser
是否是最后一个用户,用于转发给多个用户的case,主要用于合并转发和逐条转发
postScript
转发附言
conversationId
会话id
Implementation
typedef ForwardMessageFunction = Function(String conversationId,
{String? postScript, bool isLastUser});