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