copyWith method

UpdateInlineCommentModel copyWith({
  1. UpdateInlineCommentModelVersion? version,
  2. dynamic body,
  3. bool? resolved,
})

Implementation

UpdateInlineCommentModel copyWith(
    {UpdateInlineCommentModelVersion? version,
    dynamic body,
    bool? resolved}) {
  return UpdateInlineCommentModel(
    version: version ?? this.version,
    body: body ?? this.body,
    resolved: resolved ?? this.resolved,
  );
}