ElectrumLink constructor

ElectrumLink({
  1. required String host,
  2. required int port,
  3. bool useSsl = true,
  4. int timeoutMs = 10000,
})

Implementation

ElectrumLink({
  required this.host,
  required this.port,
  this.useSsl = true,
  this.timeoutMs = 10000,
});