endsWithLtr method

bool endsWithLtr([
  1. bool isHtml = false
])

Checks if the string ends with left-to-right (LTR) text, optionally considering HTML markup.

Implementation

bool endsWithLtr([bool isHtml = false]) => Bidi.endsWithLtr(this, isHtml);