CollectionPropertiesResponse constructor

const CollectionPropertiesResponse({
  1. required Result result,
  2. required CollectionInfo collectionInfo,
  3. required int writeConcern,
  4. required bool waitForSync,
  5. required String tempObjectId,
  6. required bool cacheEnabled,
  7. required bool isSmartChild,
  8. required String objectId,
  9. String? schema,
  10. required KeyOptions keyOptions,
  11. required bool isDisjoint,
  12. required String statusString,
})

Implementation

const CollectionPropertiesResponse({
  required Result result,
  required CollectionInfo collectionInfo,
  required this.writeConcern,
  required this.waitForSync,
  required this.tempObjectId,
  required this.cacheEnabled,
  required this.isSmartChild,
  required this.objectId,
  this.schema,
  required this.keyOptions,
  required this.isDisjoint,
  required this.statusString,
}) : super(
        result: result,
        collectionInfo: collectionInfo,
      );