NodeBlueprintService constructor

NodeBlueprintService({
  1. required ProviderRegistry providers,
  2. LedgerStore? ledgers,
  3. String agentVersion = omnyServerVersion,
  4. Clock clock = const SystemClock(),
  5. void onLog(
    1. String line
    )?,
})

Creates a blueprint service.

Implementation

NodeBlueprintService({
  required this.providers,
  LedgerStore? ledgers,
  this.agentVersion = omnyServerVersion,
  this.clock = const SystemClock(),
  this.onLog,
}) : ledgers = ledgers ?? MemoryLedgerStore();