hasAnyLtr method

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

Checks if the string contains any left-to-right (LTR) characters, optionally considering HTML markup.

Implementation

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