leftOuterJoin method Null safety
- DataSourceInterface dataSource
Creates a LEFT OUTER JOIN
with the given dataSource
.
Implementation
static JoinOnInterface leftOuterJoin(DataSourceInterface dataSource) =>
JoinOnImpl(type: JoinType.leftOuter, dataSource: dataSource);