remaining property

String? remaining
final

The remaining string after removing the delimited section.

May be null when no content remains after the match (e.g. when the end delimiter is optional and not found).

Implementation

// ignore: avoid_unnecessary_nullable_fields -- remaining is genuinely null when endOptional triggers without a match
final String? remaining;