isOrderScalar function

bool isOrderScalar(
  1. dynamic x
)

Implementation

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