TaskDefinitionPlacementConstraint.fromJson constructor
Implementation
factory TaskDefinitionPlacementConstraint.fromJson(
Map<String, dynamic> json) {
return TaskDefinitionPlacementConstraint(
expression: json['expression'] as String?,
type:
(json['type'] as String?)?.toTaskDefinitionPlacementConstraintType(),
);
}