MoorView constructor

MoorView({
  1. ViewDeclaration? declaration,
  2. required String name,
  3. required String dartTypeName,
  4. required String entityInfoName,
  5. ExistingRowClass? existingRowClass,
  6. String? customParentClass,
  7. ViewQueryInformation? viewQuery,
})

Implementation

MoorView({
  this.declaration,
  required this.name,
  required this.dartTypeName,
  required this.entityInfoName,
  this.existingRowClass,
  this.customParentClass,
  this.viewQuery,
});