FunctionResponse constructor

FunctionResponse({
  1. String id = '',
  2. required String name,
  3. required Struct? response,
  4. List<FunctionResponsePart> parts = const [],
  5. bool willContinue = false,
  6. FunctionResponse_Scheduling? scheduling,
})

Implementation

FunctionResponse({
  this.id = '',
  required this.name,
  required this.response,
  this.parts = const [],
  this.willContinue = false,
  this.scheduling,
}) : super(fullyQualifiedName);