name property

String get name

Item display name.

Depends on the current language setting.

Returns

  • The item name as a String, or an empty string if unavailable.

Implementation

String get name {
  final OperationResult resultString = objectMethod(
    pointerId,
    'OverlayItem',
    'name',
  );

  return resultString['result'];
}