copyWith method

DraftMessageContentText copyWith({
  1. FormattedText? text,
  2. LinkPreviewOptions? linkPreviewOptions,
})

Implementation

DraftMessageContentText copyWith({
  FormattedText? text,
  LinkPreviewOptions? linkPreviewOptions,
}) => DraftMessageContentText(
  text: text ?? this.text,
  linkPreviewOptions: linkPreviewOptions ?? this.linkPreviewOptions,
);