editGroupCallParticipant method
Future<Result<UpdatesBase> >
editGroupCallParticipant({
- required InputGroupCallBase call,
- required InputPeerBase participant,
- bool? muted,
- int? volume,
- bool? raiseHand,
- bool? videoStopped,
- bool? videoPaused,
- bool? presentationPaused,
Edit Group Call Participant.
ID: a5273abf.
Implementation
Future<Result<UpdatesBase>> editGroupCallParticipant({
required InputGroupCallBase call,
required InputPeerBase participant,
bool? muted,
int? volume,
bool? raiseHand,
bool? videoStopped,
bool? videoPaused,
bool? presentationPaused,
}) async {
// Preparing the request.
final request = PhoneEditGroupCallParticipant(
call: call,
participant: participant,
muted: muted,
volume: volume,
raiseHand: raiseHand,
videoStopped: videoStopped,
videoPaused: videoPaused,
presentationPaused: presentationPaused,
);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<UpdatesBase>();
}