Int64List constructor Null safety

Int64List(
  1. int length
)

Creates an Int64List of the specified length (in elements), all of whose elements are initially zero.

The list is backed by a ByteBuffer containing precisely length times 8 bytes.

Implementation

external factory Int64List(int length);