toDynamicIntList method

List<DynamicInt> toDynamicIntList({
  1. bool growable = true,
})

Implementation

List<DynamicInt> toDynamicIntList({bool growable = true}) =>
    map((e) => DynamicInt.fromBigInt(e)).toList(growable: growable);