copyWith method
InputMessageText
copyWith({
- FormattedText? text,
- LinkPreviewOptions? linkPreviewOptions,
- bool? clearDraft,
Implementation
InputMessageText copyWith({
FormattedText? text,
LinkPreviewOptions? linkPreviewOptions,
bool? clearDraft,
}) => InputMessageText(
text: text ?? this.text,
linkPreviewOptions: linkPreviewOptions ?? this.linkPreviewOptions,
clearDraft: clearDraft ?? this.clearDraft,
);