Skip to content

Instantly share code, notes, and snippets.

@Vanethos
Created November 10, 2019 12:34
Show Gist options
  • Save Vanethos/33975ed2277220afe7de82b259b10338 to your computer and use it in GitHub Desktop.
Save Vanethos/33975ed2277220afe7de82b259b10338 to your computer and use it in GitHub Desktop.
// file: src/firebase_login.dart
class LoginManager {
LoginManager._();
static final LoginManager instance = LoginManager._();
String login(String username, String password) => "Firebased $username";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment