isTextRtl method

bool isTextRtl()

Returns wether the current book is considered an RTL book (right-to-left language).

Implementation

bool isTextRtl() {
  bool? value = isTextRtlNative?.call(_sdk);

  return value!;
}