ExprHasAttribute.fromJson constructor

ExprHasAttribute.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory ExprHasAttribute.fromJson(Map<String, Object?> json) {
  return ExprHasAttribute(
    left: Expr.fromJson(json['left'] as Map<String, Object?>),
    attr: json['attr'] as String,
  );
}