DEV Community

Discussion on: Dart getters and setters

Collapse
 
nigel447 profile image
nigel447

int get age => vehicleAge;

Collapse
 
huholoman profile image
Huholoman • Edited

You probably want to prefix class properties with underscore as it makes them private - as this is the reason why you add getters in the first place.