ExprAnd.fromProto constructor

ExprAnd.fromProto(
  1. ExprAnd proto
)

Implementation

factory ExprAnd.fromProto(pb.ExprAnd proto) {
  return ExprAnd(
    left: Expr.fromProto(proto.left),
    right: Expr.fromProto(proto.right),
  );
}