Created
June 9, 2020 16:51
-
-
Save theboreddev/5454b843e2de6dac2a8912e6255d7e4f to your computer and use it in GitHub Desktop.
constructorWithOptional
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final Customer customer = new Customer( | |
"John", | |
"Smith", | |
Optional.empty(), | |
Optional.empty(), | |
Optional.empty(), | |
Optional.empty() | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment