toJson method

Map<String, dynamic> toJson()

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,
  };
}