Array<T>.fromList constructor

Array<T>.fromList(
  1. List<T> list, {
  2. int offset = oneIndexedArrayOffset,
})

Implementation

factory Array.fromList(
  List<T> list, {
  int offset = oneIndexedArrayOffset,
}) {
  return _Array.fromList(list, offset: offset);
}