ExprNegate.fromProto constructor

ExprNegate.fromProto(
  1. ExprNegate proto
)

Implementation

factory ExprNegate.fromProto(pb.ExprNegate proto) {
  return ExprNegate(Expr.fromProto(proto.arg));
}