clone method
Creates a new Decoder that is a copy of this one.
This is useful when a Decodable implementation needs to decode data without consuming the original data. For example when checking if a key exists or decoding a value conditionally.
Implementation
@override
IteratedDecoder clone() {
return StandardIteratedDecoder._(__value, _isHumanReadable, _customTypes, _index);
}