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