name property

String get name

Get the name of the overlay.

Returns

  • The overlay name

Throws

  • An exception if it fails

Implementation

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

  return resultString['result'];
}