DeleteFieldIndexCollectionInternal constructor

DeleteFieldIndexCollectionInternal({
  1. DeleteFieldIndexCollection? deleteFieldIndexCollection,
  2. int? shardId,
  3. ClockTag? clockTag,
})

Implementation

factory DeleteFieldIndexCollectionInternal({
  $4.DeleteFieldIndexCollection? deleteFieldIndexCollection,
  $core.int? shardId,
  ClockTag? clockTag,
}) {
  final $result = create();
  if (deleteFieldIndexCollection != null) {
    $result.deleteFieldIndexCollection = deleteFieldIndexCollection;
  }
  if (shardId != null) {
    $result.shardId = shardId;
  }
  if (clockTag != null) {
    $result.clockTag = clockTag;
  }
  return $result;
}