toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final conversationChannel = this.conversationChannel;
final eventDateTime = this.eventDateTime;
final id = this.id;
final lead = this.lead;
final messageDetails = this.messageDetails;
final participantType = this.participantType;
final phoneCallDetails = this.phoneCallDetails;
final resourceName = this.resourceName;
return {
'conversationChannel': ?conversationChannel,
'eventDateTime': ?eventDateTime,
'id': ?id,
'lead': ?lead,
'messageDetails': ?messageDetails,
'participantType': ?participantType,
'phoneCallDetails': ?phoneCallDetails,
'resourceName': ?resourceName,
};
}