isScalar function

bool isScalar(
  1. Uint8List x
)

Is Scalar

Implementation

bool isScalar(Uint8List x) {
  return x.length == 32;
}