GiftManager constructor
GiftManager({
- required String roomId,
- OnReceiveGiftMessageCallback? onReceiveGiftMessageCallback,
- OnReceiveLikeMessageCallback? onReceiveLikeMessageCallback,
Implementation
GiftManager({required this.roomId, this.onReceiveGiftMessageCallback, this.onReceiveLikeMessageCallback}) {
_giftStore = GiftStore.create(roomId);
_likeStore = LikeStore.create(roomId);
_addObserver();
}