opacity property

double get opacity

Gets the opacity of the annotation.

Implementation

double get opacity => _helper.opacity;
set opacity (double value)

Sets the opacity of the annotation.

Opacity value should be between 0 to 1.

Implementation

set opacity(double value) {
  _helper.opacity = value;
}