removelocationPath method

void removelocationPath(
  1. String path
)
inherited

Remove a location path

Implementation

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