NodeFormulaService constructor

NodeFormulaService({
  1. required FormulaRegistry registry,
  2. String agentVersion = omnyServerVersion,
  3. Clock clock = const SystemClock(),
  4. void onLog(
    1. String line
    )?,
})

Creates a node formula service.

Implementation

NodeFormulaService({
  required this.registry,
  this.agentVersion = omnyServerVersion,
  this.clock = const SystemClock(),
  this.onLog,
});