copyWith method
Implementation
KdfparamsModel copyWith({num? dklen, String? salt, num? n, num? r, num? p}) {
return KdfparamsModel(
dklen: dklen ?? this.dklen,
salt: salt ?? this.salt,
n: n ?? this.n,
r: r ?? this.r,
p: p ?? this.p,
);
}