GoogleCloudDialogflowV2DocumentReloadStatus.fromJson constructor

GoogleCloudDialogflowV2DocumentReloadStatus.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2DocumentReloadStatus.fromJson(core.Map json_)
  : this(
      status: json_.containsKey('status')
          ? GoogleRpcStatus.fromJson(
              json_['status'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      time: json_['time'] as core.String?,
    );