toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final branchName = this.branchName;
  final commitSha = this.commitSha;
  final dir = this.dir;
  final projectId = this.projectId;
  final repoName = this.repoName;
  final tagName = this.tagName;
  return {
    'branchName': ?branchName,
    'commitSha': ?commitSha,
    'dir': ?dir,
    'projectId': ?projectId,
    'repoName': ?repoName,
    'tagName': ?tagName,
  };
}