FlowOperationOutputMode class abstract interface

The FlowOperationOutputMode class is responsible for outputting the results of a FlowOperation to the console or other output medium.

You can implement your own output mode by implementing this class:

class CustomFlowOutputMode extends FlowOperationOutputMode {
  @override
  void output(FlowOperation operation) {
    // Your custom output logic here
  }
}

And then set it as the output mode for the FlowAnalyzer:

void main() {
  FlowAnalyzer.outputMode = CustomFlowOutputMode();
}
Implementers

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
output(FlowOperation flowResult) → void
Outputs the flowResult to the console or other output medium.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited