AutomatedAgentReply constructor

AutomatedAgentReply({
  1. DetectIntentResponse? detectIntentResponse,
})

Implementation

factory AutomatedAgentReply({
  $8.DetectIntentResponse? detectIntentResponse,
}) {
  final _result = create();
  if (detectIntentResponse != null) {
    _result.detectIntentResponse = detectIntentResponse;
  }
  return _result;
}