sendCustomSEI method

Future<bool> sendCustomSEI(
  1. Map<String, dynamic> seiData, {
  2. ZegoStreamType streamType = ZegoStreamType.main,
})

MUST call after pushing the stream(turn on camera of microphone) SEI data will transmit by the audio and video stream

Implementation

Future<bool> sendCustomSEI(
  Map<String, dynamic> seiData, {
  ZegoStreamType streamType = ZegoStreamType.main,
}) async {
  return ZegoUIKitCore.shared.coreData.sendSEI(
    ZegoUIKitInnerSEIType.custom.name,
    seiData,
    streamType: streamType,
  );
}