toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final interactionType = this.interactionType;
final responseToken = this.responseToken;
final subtype = this.subtype;
final type = this.type;
return {
'interactionType': ?interactionType,
'responseToken': ?responseToken,
'subtype': ?subtype,
'type': ?type,
};
}