toJson method

Map<String, dynamic> toJson()

Implementation

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