DeleteFieldIndexCollection constructor
DeleteFieldIndexCollection({
- String? collectionName,
- bool? wait,
- String? fieldName,
- WriteOrdering? ordering,
Implementation
factory DeleteFieldIndexCollection({
$core.String? collectionName,
$core.bool? wait,
$core.String? fieldName,
WriteOrdering? ordering,
}) {
final $result = create();
if (collectionName != null) {
$result.collectionName = collectionName;
}
if (wait != null) {
$result.wait = wait;
}
if (fieldName != null) {
$result.fieldName = fieldName;
}
if (ordering != null) {
$result.ordering = ordering;
}
return $result;
}