Code constructor

Code({
  1. String? body,
  2. String? effectiveCommitSha,
  3. String? effectiveRootComment,
  4. Position? position,
  5. String? reply,
  6. bool? resolved,
})

Implementation

Code({
  this.body,
  this.effectiveCommitSha,
  this.effectiveRootComment,
  this.position,
  this.reply,
  this.resolved,
});