https://refactoring.guru/introduce-null-object
Introduce Null Object
Problem: Since some methods return null instead of real objects, you have many checks for null in your code. Solution: Instead of null, return a null object...
introduce null object