CatchUpId constructor

CatchUpId({
  1. String? uuid,
  2. String? projectionType,
})

Implementation

factory CatchUpId({
  $core.String? uuid,
  $core.String? projectionType,
}) {
  final _result = create();
  if (uuid != null) {
    _result.uuid = uuid;
  }
  if (projectionType != null) {
    _result.projectionType = projectionType;
  }
  return _result;
}