options property
BubbleOptions
get
options
Gets the bubbles options used to configure this behaviour.
Implementation
BubbleOptions get options => _options!;
set
options
(BubbleOptions value)
Set the bubble options used to configure this behaviour.
Changing this value will cause the currently spawned bubbles to update.
Implementation
set options(BubbleOptions value) {
if (value == _options) return;
BubbleOptions? oldOptions = _options;
_options = value;
onOptionsUpdate(oldOptions);
}