CreateFieldIndexCollectionInternal constructor
CreateFieldIndexCollectionInternal({
- CreateFieldIndexCollection? createFieldIndexCollection,
- int? shardId,
- ClockTag? clockTag,
Implementation
factory CreateFieldIndexCollectionInternal({
$4.CreateFieldIndexCollection? createFieldIndexCollection,
$core.int? shardId,
ClockTag? clockTag,
}) {
final $result = create();
if (createFieldIndexCollection != null) {
$result.createFieldIndexCollection = createFieldIndexCollection;
}
if (shardId != null) {
$result.shardId = shardId;
}
if (clockTag != null) {
$result.clockTag = clockTag;
}
return $result;
}