GiftManager constructor

GiftManager({
  1. required String roomId,
  2. OnReceiveGiftMessageCallback? onReceiveGiftMessageCallback,
  3. OnReceiveLikeMessageCallback? onReceiveLikeMessageCallback,
})

Implementation

GiftManager({required this.roomId, this.onReceiveGiftMessageCallback, this.onReceiveLikeMessageCallback}) {
  _giftStore = GiftStore.create(roomId);
  _likeStore = LikeStore.create(roomId);

  _addObserver();
}