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