toJson method

Map<String, dynamic> toJson()

Implementation

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