crossJoin static method

JoinInterface crossJoin(
  1. DataSourceInterface dataSource
)

Creates an CROSS JOIN with the given dataSource.

Implementation

static JoinInterface crossJoin(DataSourceInterface dataSource) =>
    JoinImpl(dataSource: dataSource);