Created
June 20, 2020 01:29
-
-
Save philipretl/8d525363569933674d7e67f8fa7613bc to your computer and use it in GitHub Desktop.
This file contains hidden or 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 DomiciliariosCercanosService with ChangeNotifier{ | |
// muchas variables | |
static final DomiciliariosCercanosService _instancia = | |
new DomiciliariosCercanosService ._internal(); | |
factory DomiciliariosCercanosService () { | |
return _instancia; | |
} | |
DomiciliariosCercanosService._internal() { | |
this._domiciliariosCercanos = []; | |
this._cargando = false; | |
this._mensajeActual = new MessageModel(); | |
this._auth = new AuthModel(); | |
} | |
//... mucho codigo | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment