int64BigEndianBytes function

Uint8List int64BigEndianBytes(
  1. int value
)

Implementation

Uint8List int64BigEndianBytes(int value) => Uint8List(8)..buffer.asByteData().setInt64(0, value, Endian.big);