toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accessCode = this.accessCode;
  final entryPointFeatures = this.entryPointFeatures;
  final entryPointType = this.entryPointType;
  final label = this.label;
  final meetingCode = this.meetingCode;
  final passcode = this.passcode;
  final password = this.password;
  final pin = this.pin;
  final regionCode = this.regionCode;
  final uri = this.uri;
  return {
    'accessCode': ?accessCode,
    'entryPointFeatures': ?entryPointFeatures,
    'entryPointType': ?entryPointType,
    'label': ?label,
    'meetingCode': ?meetingCode,
    'passcode': ?passcode,
    'password': ?password,
    'pin': ?pin,
    'regionCode': ?regionCode,
    'uri': ?uri,
  };
}