ExprGetAttribute.fromJson constructor

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

Implementation

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