getDecompositionType function

DecompositionType? getDecompositionType(
  1. int character
)

Gets the Unicode decomposition type.

Implementation

DecompositionType? getDecompositionType(int character) {
  return decompositionTypes[character];
}