toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final author = this.author;
final commitMessage = this.commitMessage;
final paths = this.paths;
return {
'author': ?author,
'commitMessage': ?commitMessage,
'paths': ?paths,
};
}