WalletState constructor

WalletState({
  1. String? address,
  2. bool isConnected = false,
  3. required String chainId,
})

Implementation

WalletState({
  this.address,
  this.isConnected = false,
  required this.chainId,
});