startsWithLtr method

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

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

Implementation

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