slice method

Complex64List slice(
  1. int start, [
  2. int? length
])

Implementation

Complex64List slice(int start, [int? length]) {
  return Complex64List._(_list.buffer.asFloat64x2List(
      _list.offsetInBytes + start * _list.elementSizeInBytes, length));
}