int64bytes static method

Uint8List int64bytes(
  1. int value
)

Implementation

static Uint8List int64bytes(int value) =>
    Uint8List(8)..buffer.asInt64List()[0] = value;