isOrderScalar function

bool isOrderScalar(
  1. dynamic x
)

Is Order Scalar

Implementation

bool isOrderScalar(x) {
  if (!isScalar(x)) return false;
  return _compare(x, _ecGroupOrder as Uint8List) < 0; // < G
}