isRTL static method

bool isRTL(
  1. String text
)

Implementation

static bool isRTL(String text) {
  if (text.isEmpty) return false;
  return false;
}