setOutlineOrder abstract method

bool setOutlineOrder(
  1. int order
)

Method is used to specify the rendering order of the polyline’s outline. order The rendering order value for the outline. Default: 0. Returns true if the operation is successful, false otherwise.

Example:

// Set outline order
bool outlineOrderSuccess = _polylineMapObject!.setOutlineOrder(1);
print("Set polyline outline order to 1: $outlineOrderSuccess");

Implementation

bool setOutlineOrder(int order);