removeAllPersistentRoadblocks static method

GemError removeAllPersistentRoadblocks()

Remove all user persistent roadblock

Throws

  • An exception if it fails

Implementation

static GemError removeAllPersistentRoadblocks() {
  final OperationResult resultString = staticMethod(
    'TrafficService',
    'removeAllPersistentRoadblocks',
  );

  return GemErrorExtension.fromCode(resultString['result']);
}