RemoteInputsEnabledUpdate.set constructor

  1. @With<WithToJson>()
const RemoteInputsEnabledUpdate.set(
  1. {bool? microphone,
  2. bool? camera,
  3. bool? screenShare}
)

Implementation

@With<WithToJson>()
const factory RemoteInputsEnabledUpdate.set({
  /// Whether to mute or unmute a remote participant's microphone.
  bool? microphone,

  /// Whether to mute or unmute a remote participant's camera.
  bool? camera,

  /// Whether to stop a remote participant's screen share (only `false` is supported).
  bool? screenShare,
}) = _RemoteInputsEnabledUpdate;