copyWith method

InputTextQuote copyWith({
  1. FormattedText? text,
  2. int? position,
})

Implementation

InputTextQuote copyWith({FormattedText? text, int? position}) =>
    InputTextQuote(
      text: text ?? this.text,
      position: position ?? this.position,
    );