Config constructor

const Config({
  1. required String breezserver,
  2. required String chainnotifierUrl,
  3. String? mempoolspaceUrl,
  4. required String workingDir,
  5. required Network network,
  6. required int paymentTimeoutSec,
  7. String? defaultLspId,
  8. String? apiKey,
  9. required double maxfeePercent,
  10. required int exemptfeeMsat,
  11. required NodeConfig nodeConfig,
})

Implementation

const Config({
  required this.breezserver,
  required this.chainnotifierUrl,
  this.mempoolspaceUrl,
  required this.workingDir,
  required this.network,
  required this.paymentTimeoutSec,
  this.defaultLspId,
  this.apiKey,
  required this.maxfeePercent,
  required this.exemptfeeMsat,
  required this.nodeConfig,
});