toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final projectKey = this.projectKey;
  final repoSlug = this.repoSlug;
  final webhookId = this.webhookId;
  return {
    'projectKey': ?projectKey,
    'repoSlug': ?repoSlug,
    'webhookId': ?webhookId,
  };
}