shortName method
Get the "short" name of this property value (returns empty if property value is unknown)
See the Rust documentation for get
for more information.
Implementation
String? shortName() {
final result = _icu4x_VerticalOrientation_short_name_mv1(index);
if (!result.isOk) {
return null;
}
return result.union.ok._toDart([], isStatic: true);
}