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