AlbyGoConnectConfig constructor

const AlbyGoConnectConfig({
  1. required String appName,
  2. required String appIconUrl,
  3. required String callback,
  4. String discoveryRelay = 'wss://relay.getalby.com',
  5. List<NwcMethod> requestMethods = _defaultAlbyGoRequestMethods,
  6. String walletName = 'Alby Go',
  7. AlbyGoConnectMethod connectMethod = AlbyGoConnectMethod.walletAuth,
  8. String nostrNwcHost = 'connect',
})

Implementation

const AlbyGoConnectConfig({
  required this.appName,
  required this.appIconUrl,
  required this.callback,
  this.discoveryRelay = 'wss://relay.getalby.com',
  this.requestMethods = _defaultAlbyGoRequestMethods,
  this.walletName = 'Alby Go',
  this.connectMethod = AlbyGoConnectMethod.walletAuth,
  this.nostrNwcHost = 'connect',
});