sendGift method
Send gift to room.
roomId
current entered room id.
giftId
gift id.
count
gift count.
Implementation
@override
Future<TUIActionCallback> sendGift(String roomId, String giftId, int count) {
return RoomEngineNative.sendGift(roomId, giftId, count);
}