toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final author = this.author;
  final branch = this.branch;
  final commit = this.commit;
  final commitMessage = this.commitMessage;
  final commitTime = this.commitTime;
  final displayName = this.displayName;
  final hash = this.hash;
  final uri = this.uri;
  return {
    'author': ?author,
    'branch': ?branch,
    'commit': ?commit,
    'commitMessage': ?commitMessage,
    'commitTime': ?commitTime,
    'displayName': ?displayName,
    'hash': ?hash,
    'uri': ?uri,
  };
}