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