JoinInstruction constructor
JoinInstruction({
- required String leftOperand,
- required String onClause,
- required String rightOperand,
- required JoinType type,
- JoinKeyProperties? leftJoinKeyProperties,
- JoinKeyProperties? rightJoinKeyProperties,
Implementation
JoinInstruction({
required this.leftOperand,
required this.onClause,
required this.rightOperand,
required this.type,
this.leftJoinKeyProperties,
this.rightJoinKeyProperties,
});