DeleteFieldIndexCollectionInternal constructor
DeleteFieldIndexCollectionInternal({
- DeleteFieldIndexCollection? deleteFieldIndexCollection,
- int? shardId,
- 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;
}