toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dialogflowParticipant = this.dialogflowParticipant;
  final dialogflowParticipantName = this.dialogflowParticipantName;
  final obfuscatedExternalUserId = this.obfuscatedExternalUserId;
  final role = this.role;
  final userId = this.userId;
  return {
    'dialogflowParticipant': ?dialogflowParticipant,
    'dialogflowParticipantName': ?dialogflowParticipantName,
    'obfuscatedExternalUserId': ?obfuscatedExternalUserId,
    'role': ?role,
    'userId': ?userId,
  };
}