RunSkippedWhen.fromJson constructor

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

Implementation

factory RunSkippedWhen.fromJson(Map<String, dynamic> json) => RunSkippedWhen(
    applyAttributesInstead: json["applyAttributesInstead"] == null ? null : UiFeedbackElementAttributesConfig.fromJson(json["applyAttributesInstead"]),
    applyContentInstead: json["applyContentInstead"] == null ? null : UiFeedbackElementContentConfig.fromJson(json["applyContentInstead"]),
    applyDefaultAttributes: json["applyDefaultAttributes"],
    applyDefaultContent: json["applyDefaultContent"],
    codeEquals: json["codeEquals"],
);