sendGift abstract method

Future<CompletionHandler> sendGift({
  1. required String giftID,
  2. required int count,
})

Send a specified gift to the current room

  • giftID : Unique identifier ID of the gift to send
  • count : Number of gifts to send at once

Implementation

Future<CompletionHandler> sendGift({
  required String giftID,
  required int count,
});