levelIsRtl static method
- int level
Check if a Level returned by level_at is an RTL level.
Invalid levels (numbers greater than 125) will be assumed LTR
See the Rust documentation for is_rtl
for more information.
Implementation
static bool levelIsRtl(int level) {
final result = _icu4x_Bidi_level_is_rtl_mv1(level);
return result;
}