sendLike method

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

Send like to room.

roomId current entered room id. count like count.

Implementation

@override
Future<TUIActionCallback> sendLike(String roomId, int count) {
  return RoomEngineNative.sendLike(roomId, count);
}