DEV Community

Discussion on: 🦋Flutter - Manage variables globally

Collapse
 
jefrynolastname profile image
Info Comment hidden by post author - thread only visible in this permalink

set myVariable(int value) => myVariable = value;
supposed to be
set myVariable(int value) => _myVariable = value;
and to use the setterjust myVariable = something in component

Some comments have been hidden by the post's author - find out more