ThirdPartyWalletUnsupportedChains constructor

ThirdPartyWalletUnsupportedChains({
  1. required String walletName,
  2. String? message,
})

Implementation

ThirdPartyWalletUnsupportedChains({
  required String walletName,
  String? message,
}) : super(
        message ??
            'The current configured chains are not supported by $walletName',
      );