TonConnect constructor
TonConnect(})
Implementation
TonConnect(this._manifestUrl,
{IStorage? customStorage,
String? walletsListSource,
int? walletsListCacheTtl}) {
storage = customStorage ?? DefaultStorage();
_walletsList = WalletsListManager(
walletsListSource: walletsListSource, cacheTtl: walletsListCacheTtl);
provider = null;
wallet = null;
_statusChangeSubscriptions = [];
_statusChangeErrorSubscriptions = [];
}