updateMeetingById function

Future<CubeMeeting> updateMeetingById(
  1. String meetingId,
  2. Map<String, dynamic> params
)

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();
}