zIndex property

int get zIndex

The annotation's z-index (rendering order within its layer).

Lower values render first (behind), higher values render last (in front). Reading this inside an Observer widget automatically tracks changes.

Implementation

int get zIndex => _zIndex.value;
set zIndex (int value)

Implementation

set zIndex(int value) => runInAction(() => _zIndex.value = value);