copyWith method

KdfparamsModel copyWith({
  1. num? dklen,
  2. String? salt,
  3. num? n,
  4. num? r,
  5. num? p,
})

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,
  );
}