toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final autoAcceptInvitations = this.autoAcceptInvitations;
  final conferenceProperties = this.conferenceProperties;
  final dataOwner = this.dataOwner;
  final description = this.description;
  final etag = this.etag;
  final id = this.id;
  final kind = this.kind;
  final location = this.location;
  final summary = this.summary;
  final timeZone = this.timeZone;
  return {
    'autoAcceptInvitations': ?autoAcceptInvitations,
    'conferenceProperties': ?conferenceProperties,
    'dataOwner': ?dataOwner,
    'description': ?description,
    'etag': ?etag,
    'id': ?id,
    'kind': ?kind,
    'location': ?location,
    'summary': ?summary,
    'timeZone': ?timeZone,
  };
}