overlays property

OverlayMutableCollection get overlays

Get access to the search target overlays collection

Returns

  • The overlays collection

Throws

  • An exception if it fails

Implementation

OverlayMutableCollection get overlays {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'SearchPreferences',
    'overlays',
  );

  return OverlayMutableCollection.init(resultString['result']);
}