createMeeting function

Future<CubeMeeting> createMeeting(
  1. CubeMeeting meeting
)

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