Skip to content

Instantly share code, notes, and snippets.

@arulwastaken
Created May 7, 2021 15:31
Show Gist options
  • Save arulwastaken/c0cc6ec613f72c737259bb14d826d9b3 to your computer and use it in GitHub Desktop.
Save arulwastaken/c0cc6ec613f72c737259bb14d826d9b3 to your computer and use it in GitHub Desktop.
class MvvmViewModel with ChangeNotifier {
String welcomeText = "";
final MvvmRepo repo;
MvvmViewModel(this.repo) {
loadWelcomeText();
}
Future<void> loadWelcomeText() async {
welcomeText = await repo.getWelcomeText();
notifyListeners();
}
// other methods implementation
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment