copyWith method
CreateSubaccountCryptoModel
copyWith({
- String? ciphertext,
- CipherparamsModel? cipherparams,
- String? cipher,
- String? kdf,
- KdfparamsModel? kdfparams,
- String? mac,
Implementation
CreateSubaccountCryptoModel copyWith({
String? ciphertext,
CipherparamsModel? cipherparams,
String? cipher,
String? kdf,
KdfparamsModel? kdfparams,
String? mac,
}) {
return CreateSubaccountCryptoModel(
ciphertext: ciphertext ?? this.ciphertext,
cipherparams: cipherparams ?? this.cipherparams,
cipher: cipher ?? this.cipher,
kdf: kdf ?? this.kdf,
kdfparams: kdfparams ?? this.kdfparams,
mac: mac ?? this.mac,
);
}