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