removePersistentRoadblockById static method

GemError removePersistentRoadblockById(
  1. String id
)

Removes a previously created persistent roadblock by its identifier.

Parameters

  • id: The unique identifier of the persistent roadblock to remove.

Returns

Also see:

Implementation

static GemError removePersistentRoadblockById(String id) {
  final OperationResult resultString = staticMethod(
    'TrafficService',
    'removePersistentRoadblockById',
    args: id,
  );

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