copyWith method
Implementation
MentionInfo copyWith({
String? userID,
String? displayName,
int? startIndex,
}) {
return MentionInfo(
userID: userID ?? this.userID,
displayName: displayName ?? this.displayName,
startIndex: startIndex ?? this.startIndex,
);
}