GitLabRepositoryId.fromJson constructor

GitLabRepositoryId.fromJson(
  1. Map json_
)

Implementation

GitLabRepositoryId.fromJson(core.Map json_)
    : this(
        id: json_['id'] as core.String?,
        webhookId: json_['webhookId'] as core.int?,
      );