FunctionResponse constructor

const FunctionResponse(
  1. String name,
  2. Map<String, Object?> response, {
  3. String? id,
  4. bool? isThought,
})

Implementation

const FunctionResponse(
  this.name,
  this.response, {
  this.id,
  bool? isThought,
}) : super(
        isThought: isThought,
        thoughtSignature: null,
      );