arraySlice static method
dynamic
arraySlice(
- dynamic array, [
- int? from,
- int? to
])
Implementation
static arraySlice(array, [int? from, int? to]) {
// if ( AnimationUtils.isTypedArray( array ) ) {
if (array.runtimeType.toString() != "List<num>") {
print(
" AnimationUtils.arraySlice array: ${array.runtimeType.toString()} ");
// // in ios9 array.subarray(from, null) will return empty array
// // but array.subarray(from) or array.subarray(from, len) is correct
// return new array.constructor( array.subarray( from, to != null ? to : array.length ) );
}
return array.slice(from, to);
}