leftOuterJoin static method

JoinOnInterface leftOuterJoin(
  1. DataSourceInterface dataSource
)

Creates a LEFT OUTER JOIN with the given dataSource.

Implementation

static JoinOnInterface leftOuterJoin(DataSourceInterface dataSource) =>
    JoinOnImpl(type: JoinType.leftOuter, dataSource: dataSource);