copyWith method

PdfTextRange copyWith({
  1. int? start,
  2. int? end,
})

Implementation

PdfTextRange copyWith({
  int? start,
  int? end,
}) =>
    PdfTextRange(
      start: start ?? this.start,
      end: end ?? this.end,
    );