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