HumanLoopActivationConfig.fromJson constructor

HumanLoopActivationConfig.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory HumanLoopActivationConfig.fromJson(Map<String, dynamic> json) {
  return HumanLoopActivationConfig(
    humanLoopActivationConditionsConfig:
        HumanLoopActivationConditionsConfig.fromJson(
            json['HumanLoopActivationConditionsConfig']
                as Map<String, dynamic>),
  );
}