setZ method

Layer setZ(
  1. int value
)

Sets the z-order for this layer.

Implementation

Layer setZ(int value) {
  z = value;
  return this;
}