copyWith method
Implementation
CreateInlineCommentModelInlineCommentProperties copyWith(
{String? textSelection,
int? textSelectionMatchCount,
int? textSelectionMatchIndex}) {
return CreateInlineCommentModelInlineCommentProperties(
textSelection: textSelection ?? this.textSelection,
textSelectionMatchCount:
textSelectionMatchCount ?? this.textSelectionMatchCount,
textSelectionMatchIndex:
textSelectionMatchIndex ?? this.textSelectionMatchIndex,
);
}