toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final gitRepositoryLink = this.gitRepositoryLink;
  final gitRepositoryLinkType = this.gitRepositoryLinkType;
  final pullRequest = this.pullRequest;
  final push = this.push;
  return {
    'gitRepositoryLink': ?gitRepositoryLink,
    'gitRepositoryLinkType': ?gitRepositoryLinkType,
    'pullRequest': ?pullRequest,
    'push': ?push,
  };
}