Created
November 10, 2019 12:34
-
-
Save Vanethos/1fb671ba46cda67706679a618be75b93 to your computer and use it in GitHub Desktop.
This file contains 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
// file: src/server_login.dart | |
class LoginManager { | |
LoginManager._(); | |
static final LoginManager instance = LoginManager._(); | |
String login(String username, String password) => "Servered $username"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment