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