name property

String get name

Get the overlay display name.

Depends on the current language setting.

Returns

  • The overlay name as a String.

Implementation

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

  return resultString['result'];
}