JoinEdge constructor

const JoinEdge({
  1. required String leftTable,
  2. required String leftColumn,
  3. required String rightTable,
  4. required String rightColumn,
})

Implementation

const JoinEdge({
  required this.leftTable,
  required this.leftColumn,
  required this.rightTable,
  required this.rightColumn,
});