from<U> method

BigUint64Array from<U>(
  1. List<U> arrayLike,
  2. int mapfn(
    1. U,
    2. num
    ), [
  3. dynamic thisArg
])

Creates an array from an array-like or iterable object.

Implementation

_i3.BigUint64Array from<U>(
  _i2.List<U> arrayLike,
  _i2.int Function(
    U,
    _i2.num,
  ) mapfn, [
  _i2.dynamic thisArg,
]) =>
    _i5.callMethod(
      this,
      'from',
      [
        arrayLike,
        _i5.allowInterop(mapfn),
        thisArg,
      ],
    );