createMeeting function
Creates new CubeMeeting model on the backend.
More details about required parameters by link
meeting - the instance of CubeMeeting which will be created on the backend.
Implementation
Future<CubeMeeting> createMeeting(CubeMeeting meeting) {
return CreateMeetingQuery(meeting).perform();
}