updateMeetingById function
Updates the exist meeting. More details about required parameters by link
meetingId
- the id of the meeting you want to update.
params
- the parameters you want to update in the meeting with meetingId
.
Implementation
Future<CubeMeeting> updateMeetingById(String meetingId, Map<String, dynamic> params) {
return UpdateMeetingQuery.byId(meetingId, params).perform();
}