opacity property

double opacity

Gets the opacity of the annotation.

Implementation

double get opacity => _helper.opacity;
void 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;
}