Space constructor

Space({
  1. ActiveConference? activeConference,
  2. SpaceConfig? config,
  3. String? meetingCode,
  4. String? meetingUri,
  5. String? name,
})

Implementation

Space({
  this.activeConference,
  this.config,
  this.meetingCode,
  this.meetingUri,
  this.name,
});