regionsIn method

List<RegionFeature> regionsIn(
  1. dynamic id, [
  2. bool strict = false
])

Returns the region matching id and all regions it contains, if any. If passing true for strict, an exact match will not be included.

Implementation

List<RegionFeature> regionsIn(dynamic id, [bool strict = false]) {
  _checkReady();
  return _borders!.regionsIn(id, strict);
}