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