toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final actionType = this.actionType;
final body = this.body;
final effectiveCommitSha = this.effectiveCommitSha;
return {
'actionType': ?actionType,
'body': ?body,
'effectiveCommitSha': ?effectiveCommitSha,
};
}