GoogleCloudAiplatformV1FunctionCallingConfig.fromJson constructor

GoogleCloudAiplatformV1FunctionCallingConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1FunctionCallingConfig.fromJson(core.Map json_)
  : this(
      allowedFunctionNames: (json_['allowedFunctionNames'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      mode: json_['mode'] as core.String?,
      streamFunctionCallArguments:
          json_['streamFunctionCallArguments'] as core.bool?,
    );