removeUriPath method

void removeUriPath(
  1. String path
)
inherited

Remove a URI path

Implementation

void removeUriPath(final String path) {
  _options.removeWhere(
    (final element) => element is UriPathOption && element.value == path,
  );
}