validateListSelection method

List<CheckpointValidationError> validateListSelection(
  1. Checkpoint checkpoint
)

Implementation

List<CheckpointValidationError> validateListSelection(Checkpoint checkpoint) {
  return [
    if (checkpoint.listselValue.isNullOrEmpty)
      CheckpointValidationError.listSelectionIsWrongOrMissing,
  ];
}