asInt32List property
Int32List
get
asInt32List
Ensures that this List is an Int32List.
Calls toUint32List if needed, or just cast to Int32List.
Implementation
Int32List get asInt32List =>
this is Int32List ? (this as Int32List) : toInt32List();