removeLocationQuery method

void removeLocationQuery(
  1. String query
)
inherited

Remove a location query

Implementation

void removeLocationQuery(final String query) {
  _options.removeWhere(
    (final element) =>
        element is LocationQueryOption && element.value == query,
  );
}