streamCall abstract method

Future<void> streamCall(
  1. FunctionCall functionCall,
  2. void onStream(
    1. String event,
    2. ToolReturn toolReturn
    )
)

Implementation

Future<void> streamCall(
  FunctionCall functionCall,
  void Function(String event, ToolReturn toolReturn) onStream,
);