Dao constructor

Dao(
  1. ClassElement classElement,
  2. String name,
  3. List<QueryMethod> queryMethods,
  4. List<InsertionMethod> insertionMethods,
  5. List<UpdateMethod> updateMethods,
  6. List<DeletionMethod> deletionMethods,
  7. List<TransactionMethod> transactionMethods,
  8. Set<Entity> streamEntities,
  9. Set<View> streamViews,
  10. Set<TypeConverter> typeConverters,
)

Implementation

Dao(
  this.classElement,
  this.name,
  this.queryMethods,
  this.insertionMethods,
  this.updateMethods,
  this.deletionMethods,
  this.transactionMethods,
  this.streamEntities,
  this.streamViews,
  this.typeConverters,
);