toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (conferenceId != null) 'conferenceId': conferenceId!,
  if (conferenceSolution != null) 'conferenceSolution': conferenceSolution!,
  if (createRequest != null) 'createRequest': createRequest!,
  if (entryPoints != null) 'entryPoints': entryPoints!,
  if (notes != null) 'notes': notes!,
  if (parameters != null) 'parameters': parameters!,
  if (signature != null) 'signature': signature!,
};