Skip to content

Instantly share code, notes, and snippets.

@yusirdemir
Last active March 22, 2021 14:18
Show Gist options
  • Save yusirdemir/c255d1b56229860ab4df4b52de4cf266 to your computer and use it in GitHub Desktop.
Save yusirdemir/c255d1b56229860ab4df4b52de4cf266 to your computer and use it in GitHub Desktop.
Eager Singleton
class NavigationService {
static NavigationService _instace = NavigationService._init();
static NavigationService get instance => _instace;
NavigationService._init();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment