FunctionCallContent constructor

FunctionCallContent({
  1. required String callId,
  2. required String name,
  3. Map<String, Object?>? arguments,
})

Creates a new FunctionCallContent.

Implementation

FunctionCallContent({
  required this.callId,
  required this.name,
  this.arguments,
});