toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accessToken = this.accessToken;
final branches = this.branches;
final displayName = this.displayName;
final repositoryUri = this.repositoryUri;
final trackingBranch = this.trackingBranch;
return {
'accessToken': ?accessToken,
'branches': ?branches,
'displayName': ?displayName,
'repositoryUri': ?repositoryUri,
'trackingBranch': ?trackingBranch,
};
}