copyWith method
Implementation
WalletEntity copyWith({
WalletProvider? walletProvider,
String? publicAddress,
}) {
return WalletEntity(
walletProvider: walletProvider ?? this.walletProvider,
publicAddress: publicAddress ?? this.publicAddress,
);
}