name property
Get the name of the item.
Returns
- The name of the item if available, otherwise empty string
Throws
- An exception if it fails
Implementation
String get name {
final OperationResult resultString = objectMethod(
_pointerId,
'OverlayItem',
'name',
);
return resultString['result'];
}