join method Null safety
- 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);