GitFileSource.fromJson constructor

GitFileSource.fromJson(
  1. Map json_
)

Implementation

GitFileSource.fromJson(core.Map json_)
  : this(
      bitbucketServerConfig: json_['bitbucketServerConfig'] as core.String?,
      githubEnterpriseConfig: json_['githubEnterpriseConfig'] as core.String?,
      path: json_['path'] as core.String?,
      repoType: json_['repoType'] as core.String?,
      repository: json_['repository'] as core.String?,
      revision: json_['revision'] as core.String?,
      uri: json_['uri'] as core.String?,
    );