copyWith method

GetMarkdownText copyWith({
  1. FormattedText? text,
})

Implementation

GetMarkdownText copyWith({
  FormattedText? text,
}) => GetMarkdownText(
  text: text ?? this.text,
);