BitbucketServerRepositoryId.fromJson constructor

BitbucketServerRepositoryId.fromJson(
  1. Map json_
)

Implementation

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