Skip to main content

where to use Private Variables

· One min read
Sarthak Mohanty

private Variables in Flutter:

So, as to when you should make things private: I'd say MAKE EVERYTHING PRIVATE BY DEFAULT, and then expose only those parts that absolutely have to be public. The more you can make private, the better.

When are Getters and Setters Justified?