asUint64List property

Uint64List get asUint64List

Ensures that this List is an Uint64List.

Calls toUint64List if needed, or just cast to Uint64List.

Implementation

Uint64List get asUint64List =>
    this is Uint64List ? (this as Uint64List) : toUint64List();