leftJoin static method
Creates a LEFT JOIN with the given dataSource.
This is the same as an LEFT OUTER JOIN.
Implementation
static JoinOnInterface leftJoin(DataSourceInterface dataSource) =>
JoinOnImpl(type: .leftOuter, dataSource: dataSource);