delegate property

Implementation

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

Implementation

set delegate(FutureOr<ByteRTCKTVManagerDelegate?> value) {
  sendInstanceSet("delegate", value);
}