GiftListController constructor
GiftListController({
- required String roomId,
- String language = 'en',
- OnGiftError? onError,
Implementation
GiftListController({required this.roomId, this.language = 'en', OnGiftError? onError}) {
giftManager = GiftManagerFactory.getGiftManager(roomId);
_getGiftList();
TUIGiftStore().onError = onError;
}