encodeInt function

Uint8List encodeInt(
  1. int v
)

Implementation

Uint8List encodeInt(int v) {
  return encodeUint256(BigInt.from(v));
}