BitbucketServerRepositoryId.fromJson constructor

BitbucketServerRepositoryId.fromJson(
  1. Map json_
)

Implementation

BitbucketServerRepositoryId.fromJson(core.Map json_)
    : this(
        projectKey: json_.containsKey('projectKey')
            ? json_['projectKey'] as core.String
            : null,
        repoSlug: json_.containsKey('repoSlug')
            ? json_['repoSlug'] as core.String
            : null,
        webhookId: json_.containsKey('webhookId')
            ? json_['webhookId'] as core.int
            : null,
      );