copyWith method
Implementation
EncryptedCredentials copyWith({
String? data,
String? hash,
String? secret,
}) =>
EncryptedCredentials(
data: data ?? this.data,
hash: hash ?? this.hash,
secret: secret ?? this.secret,
);