sendRealTimeSequentialData abstract method

Future<ZegoRealTimeSequentialDataSentResult> sendRealTimeSequentialData(
  1. Uint8List data,
  2. String streamID
)

Send real-time sequential data to the broadcasting stream ID.

Available since: 2.14.0 Description: This function can be used to send real-time sequential data on the stream currently being broadcast. Use cases: You need to call this function when you need to send real-time sequential data. When to call: After calling startBroadcasting. Restrictions: None. Caution: None.

  • data The real-time sequential data to be sent.
  • streamID The stream ID to which the real-time sequential data is sent.
  • Returns Send real-time sequential data result notification.

Implementation

Future<ZegoRealTimeSequentialDataSentResult> sendRealTimeSequentialData(
    Uint8List data, String streamID);