longName method
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_BidiClass_long_name_mv1(index);
if (!result.isOk) {
return null;
}
return result.union.ok._toDart([], isStatic: true);
}