setMiterLimit abstract method
Method is used to specify the miter limit for miter joins.
miterLimit The miter limit value for miter joins. Default: 3.
Returns true if the operation is successful, false otherwise.
Example:
// Set miter limit
bool miterSuccess = _polylineMapObject!.setMiterLimit(5.0);
print("Set miter limit to 5.0: $miterSuccess");
Implementation
bool setMiterLimit(double miterLimit);