PointLocator.fromRule constructor

PointLocator.fromRule(
  1. BoundaryNodeRule? boundaryRule
)

Implementation

PointLocator.fromRule(BoundaryNodeRule? boundaryRule) {
  if (boundaryRule == null) throw new ArgumentError("Rule must be non-null");
  this.boundaryRule = boundaryRule;
}