h3UnidirectionalEdgeIsValid method

  1. @override
bool h3UnidirectionalEdgeIsValid(
  1. BigInt edgeIndex
)
override

Returns whether or not the input is a valid unidirectional edge

Implementation

@override
bool h3UnidirectionalEdgeIsValid(BigInt edgeIndex) {
  return _h3c.h3UnidirectionalEdgeIsValid(edgeIndex.toInt()) == 1;
}