toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final body = this.body;
  final effectiveCommitSha = this.effectiveCommitSha;
  final effectiveRootComment = this.effectiveRootComment;
  final position = this.position;
  final reply = this.reply;
  final resolved = this.resolved;
  return {
    'body': ?body,
    'effectiveCommitSha': ?effectiveCommitSha,
    'effectiveRootComment': ?effectiveRootComment,
    'position': ?position,
    'reply': ?reply,
    'resolved': ?resolved,
  };
}