delegateRts property

FutureOr<ByteRTCRTSRoomDelegate?> get delegateRts

@detail callback

Implementation

FutureOr<ByteRTCRTSRoomDelegate?> get delegateRts async {
  try {
    final result =
        await sendInstanceGet<ByteRTCRTSRoomDelegate?>("delegateRts");
    if (result == null) {
      return null;
    }
    return packObject(
        result,
        () => ByteRTCRTSRoomDelegate(
            const NativeClassOptions([], disableInit: true)));
  } catch (e) {
    return null;
  }
}
set delegateRts (FutureOr<ByteRTCRTSRoomDelegate?> value)

Implementation

set delegateRts(FutureOr<ByteRTCRTSRoomDelegate?> value) {
  sendInstanceSet("delegateRts", value);
}