copyWith method
Implementation
Blake2sConfig copyWith({
List<int>? key,
List<int>? salt,
List<int>? personalization,
Blake2sTree? tree,
}) {
return Blake2sConfig(
key: key ?? this.key,
salt: salt ?? this.salt,
personalization: personalization ?? this.personalization,
tree: tree ?? this.tree,
);
}