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