toJson method

Map<String, dynamic> toJson()

Implementation

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