HumanLoopActivationConditionsConfig.fromJson constructor

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

Implementation

factory HumanLoopActivationConditionsConfig.fromJson(
    Map<String, dynamic> json) {
  return HumanLoopActivationConditionsConfig(
    humanLoopActivationConditions:
        jsonDecode(json['HumanLoopActivationConditions'] as String) as Object,
  );
}