longName method

String? longName()

Convert to an integer using the ICU4C integer mappings for General_Category Get the "long" name of this property value (returns empty if property value is unknown)

See the Rust documentation for get for more information.

Implementation

String? longName() {
  final result = _icu4x_GeneralCategory_long_name_mv1(_ffi);
  if (!result.isOk) {
    return null;
  }
  return result.union.ok._toDart([], isStatic: true);
}