ReadConsistency constructor

ReadConsistency({
  1. ReadConsistencyType? type,
  2. 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;
}