copyWith method

ConnectedWallets copyWith({
  1. List<WalletEntity>? connectedWallets,
})

Implementation

ConnectedWallets copyWith({
  List<WalletEntity>? connectedWallets,
}) {
  return ConnectedWallets(
    connectedWallets: connectedWallets ?? this.connectedWallets,
  );
}