Input$CheckpointFilter constructor

Input$CheckpointFilter({
  1. int? afterCheckpoint,
  2. int? atCheckpoint,
  3. int? atEpoch,
  4. int? beforeCheckpoint,
})

Implementation

factory Input$CheckpointFilter({
  int? afterCheckpoint,
  int? atCheckpoint,
  int? atEpoch,
  int? beforeCheckpoint,
}) => Input$CheckpointFilter._({
  if (afterCheckpoint != null) r'afterCheckpoint': afterCheckpoint,
  if (atCheckpoint != null) r'atCheckpoint': atCheckpoint,
  if (atEpoch != null) r'atEpoch': atEpoch,
  if (beforeCheckpoint != null) r'beforeCheckpoint': beforeCheckpoint,
});