MessagePinInfo constructor

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

Constructor of MessagePinInfo.

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

Implementation

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