CountedClonerBuilder constructor
CountedClonerBuilder()
Allows configuration of CountedCloner options before instantiation. Example:
final cloner = (CountedClonerBuilder()
..doTypedClone = true
..sizeLimit = 10000
..nestLimit = 32).build();
Implementation
CountedClonerBuilder();