When I am initializing it, doStuff() is not called, can anybody let me why it's happening and how can I call this while initialization.
For now, doStuff() is called only when i am changing the value of flightTripTypeEnum
var flightTripTypeEnum: FlightJourneyTypeEnum = .OneWayTrip {
didSet{
doStuff()
}
}