CreateViewCommand constructor

CreateViewCommand(
  1. Db db,
  2. String view,
  3. String source,
  4. List pipeline, {
  5. CreateViewOptions? createViewOptions,
  6. Map<String, Object>? rawOptions,
})

Implementation

CreateViewCommand(super.db, super.view, String source, List pipeline,
    {CreateViewOptions? createViewOptions, super.rawOptions})
    : super(
          createOptions: _generateCreateOptions(
              db, source, pipeline, createViewOptions));