setOrder abstract method
Method is used to specify the rendering order of the object.
order The rendering order value. Default: 0.
Returns true if success, false otherwise.
Example:
// Set polygon rendering order
bool orderSuccess = _polygonMapObject!.setOrder(2);
print("Set polygon rendering order to 2: $orderSuccess");
Implementation
bool setOrder(int order);