GoogleCloudDialogflowCxV3RolloutState.fromJson constructor

GoogleCloudDialogflowCxV3RolloutState.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3RolloutState.fromJson(core.Map json_)
    : this(
        startTime: json_.containsKey('startTime')
            ? json_['startTime'] as core.String
            : null,
        step: json_.containsKey('step') ? json_['step'] as core.String : null,
        stepIndex: json_.containsKey('stepIndex')
            ? json_['stepIndex'] as core.int
            : null,
      );