BigIntConstructor constructor

BigIntConstructor({
  1. int asIntN(
    1. num,
    2. int
    )?,
  2. int asUintN(
    1. num,
    2. int
    )?,
})

Implementation

factory BigIntConstructor({
  _i2.int Function(
    _i2.num,
    _i2.int,
  )? asIntN,
  _i2.int Function(
    _i2.num,
    _i2.int,
  )? asUintN,
}) =>
    BigIntConstructor._(
      asIntN: asIntN == null ? null : _i5.allowInterop(asIntN),
      asUintN: asUintN == null ? null : _i5.allowInterop(asUintN),
    );