toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bitbucketServerConfig = this.bitbucketServerConfig;
  final githubEnterpriseConfig = this.githubEnterpriseConfig;
  final path = this.path;
  final repoType = this.repoType;
  final repository = this.repository;
  final revision = this.revision;
  final uri = this.uri;
  return {
    'bitbucketServerConfig': ?bitbucketServerConfig,
    'githubEnterpriseConfig': ?githubEnterpriseConfig,
    'path': ?path,
    'repoType': ?repoType,
    'repository': ?repository,
    'revision': ?revision,
    'uri': ?uri,
  };
}