BigUint64Array class

A typed array of 64-bit unsigned integer values. The contents are initialized to 0. If the requested number of bytes could not be allocated, an exception is raised.

Available extensions
Annotations
  • @JS()
  • @staticInterop

Constructors

BigUint64Array.$1()
factory
BigUint64Array.$2([num? length])
factory
BigUint64Array.$3(Iterable<int> array)
factory
BigUint64Array.$4(dynamic buffer, [num? byteOffset, num? length])
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

of BigUint64Array Function([Iterable?])
getter/setter pair

Static Methods

from<U>(List<U> arrayLike, int mapfn(U, num), [dynamic thisArg]) BigUint64Array
Creates an array from an array-like or iterable object.