hasAnyRtl method

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

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

Implementation

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