toList method

List<BigInt> toList()

Implementation

List<BigInt> toList() => toDart.map((e) {
      var o = e.dartify();
      if (o is BigInt) return o;
      return BigInt.parse(o.toString());
    }).toList();