FunctionResponse constructor

FunctionResponse({
  1. String? id,
  2. String? name,
  3. Map<String, dynamic>? response,
  4. bool? willContinue,
  5. FunctionResponseScheduling? scheduling,
  6. List<FunctionResponsePart>? parts,
})

Implementation

FunctionResponse({
  this.id,
  this.name,
  this.response,
  this.willContinue,
  this.scheduling,
  this.parts,
});