This file contains 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
class PersonBuilder { | |
private final var name: String | |
private final var age: String? | |
private final var gender: String? | |
init(name: String) { | |
self.name = name | |
} |