sendGift method

  1. @override
Future<TUIActionCallback> sendGift(
  1. String roomId,
  2. String giftId,
  3. int count
)
override

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);
}