intTo8Bits function

Bytes intTo8Bits(
  1. int value
)

Implementation

Bytes intTo8Bits(int value) {
  return intToBytes(value, 1, Endian.big);
}