join method Null safety

JoinOnInterface join(
  1. DataSourceInterface dataSource
)

Creates a JOIN with the given dataSource.

This is the same as an INNER JOIN.

Implementation

static JoinOnInterface join(DataSourceInterface dataSource) =>
    JoinOnImpl(type: JoinType.inner, dataSource: dataSource);