normalizeHamzaTasheel static method

String normalizeHamzaTasheel(
  1. String text
)

Standardize the Hamzat into one form of hamza (Tasheel method), replace Madda by hamza and alef. Replace the LamAlefs by simplified letters.

Implementation

static String normalizeHamzaTasheel(String text) =>
    ArOp.normalize_hamza(text, method: ArOp.METHOD_TASHEEL);