encodeFromInt static method

Uint8List encodeFromInt(
  1. int value
)

Implementation

static Uint8List encodeFromInt(int value) {
  return encodeFromBigInt(BigInt.from(value));
}