toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (body != null) 'body': body!,
  if (effectiveCommitSha != null) 'effectiveCommitSha': effectiveCommitSha!,
  if (effectiveRootComment != null)
    'effectiveRootComment': effectiveRootComment!,
  if (position != null) 'position': position!,
  if (reply != null) 'reply': reply!,
  if (resolved != null) 'resolved': resolved!,
};