ReadConsistency constructor
ReadConsistency({
- ReadConsistencyType? type,
- Int64? factor,
Implementation
factory ReadConsistency({
ReadConsistencyType? type,
$fixnum.Int64? factor,
}) {
final $result = create();
if (type != null) {
$result.type = type;
}
if (factor != null) {
$result.factor = factor;
}
return $result;
}