setRepeatGroup abstract method

bool setRepeatGroup(
  1. int group
)

Method is used to specify the group identifier for repeating points. group The group identifier for point repetition. Default: 0. Returns true if the operation is successful, false otherwise.

Example:

// Set repeat group
bool repeatGroupSuccess = _dottedPolylineMapObject!.setRepeatGroup(1);
print("Set dotted polyline repeat group to 1: $repeatGroupSuccess");

Implementation

bool setRepeatGroup(int group);