GoogleCloudAiplatformV1FunctionCall.fromJson constructor

GoogleCloudAiplatformV1FunctionCall.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1FunctionCall.fromJson(core.Map json_)
    : this(
        args: json_.containsKey('args')
            ? json_['args'] as core.Map<core.String, core.dynamic>
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );