declineConferenceCallInvite method
Decline Conference Call Invite.
ID: 3c479971.
Implementation
Future<Result<UpdatesBase>> declineConferenceCallInvite({
required int msgId,
}) async {
// Preparing the request.
final request = PhoneDeclineConferenceCallInvite(msgId: msgId);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<UpdatesBase>();
}