FetchGitAheadBehindResponse.fromJson constructor

FetchGitAheadBehindResponse.fromJson(
  1. Map json_
)

Implementation

FetchGitAheadBehindResponse.fromJson(core.Map json_)
  : this(
      commitsAhead: json_['commitsAhead'] as core.int?,
      commitsBehind: json_['commitsBehind'] as core.int?,
    );