normalizeHamzaUniform static method

String normalizeHamzaUniform(
  1. String text
)

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

Implementation

static String normalizeHamzaUniform(String text) =>
    ArOp.normalize_hamza(text, method: ArOp.METHOD_UNIFORM);