copyWith method
UpdateInlineCommentModel
copyWith({
- UpdateInlineCommentModelVersion? version,
- dynamic body,
- 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,
);
}