MessagePinInfo constructor

MessagePinInfo({
  1. required int pinTime,
  2. required String operatorId,
})

~english Constructor of MessagePinInfo.

param pinTime The time when the message is pinned. param operatorId The user ID of the operator that pins the message. ~end

~chinese MessagePinInfo 的构造函数。

参数 pinTime 消息置顶时间。 参数 operatorId 置顶的操作者的用户 ID。 ~end

Implementation

MessagePinInfo({
  required this.pinTime,
  required this.operatorId,
});