asInt64List property
Int64List
get
asInt64List
Ensures that this List is an Int64List.
Calls toUint64List if needed, or just cast to Int64List.
Implementation
Int64List get asInt64List =>
this is Int64List ? (this as Int64List) : toInt64List();